Anna Sirota
2b2b898e5c
Money amounts are currently prefixed with currency codes everywhere, including CSVs, which makes it harder to use those in bookkeeping. This change ensures CSVs have simple decimal money amounts instead.
67 lines
1.4 KiB
TOML
67 lines
1.4 KiB
TOML
[tool.poetry]
|
|
name = "blender-fund"
|
|
version = "1.0"
|
|
description = ""
|
|
authors = [
|
|
"Francesco Siddi <francesco@blender.org>",
|
|
"Pablo Vazquez <pablo@blender.org>",
|
|
"Sybren A. Stüvel <sybren@blender.org>"
|
|
]
|
|
license = "GPL-3.0"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.8"
|
|
"geoip2" = "^3.0"
|
|
"xhtml2pdf" = "^0.2"
|
|
attrs = "^19.3.0"
|
|
babel = "^2.6"
|
|
blender-id-oauth-client = ">=0.7"
|
|
braintree = "4.17.1"
|
|
django = "3.2.9"
|
|
django-background-tasks = "^1.2.5"
|
|
django-countries = "^7.2.1"
|
|
django-loginas = "^0.3.4"
|
|
docutils = "^0.14"
|
|
looper = {git = "https://projects.blender.org/infrastructure/looper.git", rev = "cc2b781"}
|
|
Pillow = "^8.4"
|
|
python-dateutil = "^2.7"
|
|
requests-oauthlib = "^1.0"
|
|
sentry-sdk = "^1.4.3"
|
|
wagtail = "^2.3,<=2.13"
|
|
cryptography = "^3.4"
|
|
django-pipeline = "^2.0.6"
|
|
pypugjs = "^5.9.8"
|
|
libsasscompiler = "^0.1.8"
|
|
jsmin = "^3.0.0"
|
|
reportlab = "^3.6.2"
|
|
psycopg2 = "2.8.6"
|
|
django-codemirror = "^1.0.1"
|
|
django-nested-admin = "^4.0.2"
|
|
cachetools = "5.3.2"
|
|
django-waffle = "^4.0.0"
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
ipython = "^7.9"
|
|
mkdocs = "^1.0"
|
|
mkdocs-material = "^4.4"
|
|
mypy = "^0.900"
|
|
pytest = "^5.2"
|
|
pytest-cov = "^2.8"
|
|
pytest-django = "^3.7"
|
|
responses = "^0.24.0"
|
|
flake8 = "^3.8.4"
|
|
black = "^20.8b1"
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
django-debug-toolbar = "^4.2.0"
|
|
freezegun = "^1.2.2"
|
|
factory-boy = "^3.3.0"
|
|
|
|
[tool.black]
|
|
line-length = 100
|
|
skip_string_normalization = true
|
|
|
|
[build-system]
|
|
requires = ["poetry>=1.0"]
|
|
build-backend = "poetry.masonry.api"
|