-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
81 lines (77 loc) · 1.89 KB
/
pyproject.toml
File metadata and controls
81 lines (77 loc) · 1.89 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
[tool.poetry]
name = "happybudget"
version = "1.0.0"
description = "Backend Application for HappyBudget Application"
authors = ["nickmflorin <nickmflorin@gmail.com>"]
repository = "https://github.com/nickmflorin/happybudget-api"
homepage = "https://github.com/nickmflorin/happybudget-api"
include = [
"README.md",
"pyproject.toml"
]
[tool.poetry.dependencies]
python = "^3.8"
dj-database-url = "0.5.0"
Django = "4.0"
tox = "^3.20.1"
python-dotenv = "^0.15.0"
django-cors-headers = "^3.7.0"
cryptography = "^3.4.6"
django-ratelimit = "^3.0.1"
django-model-utils = "^4.1.1"
django-polymorphic = "^3.0.0"
psycopg2 = "^2.8.6"
django-timezone-field = "^4.1.1"
django-extensions = "^3.1.1"
psycopg2-binary = "^2.8.6"
gunicorn = "^20.0.4"
python-dateutil = "^2.8.1"
boto3 = "^1.17.32"
django-storages = "^1.11.1"
Pillow = "^8.1.2"
django-colorful = "^1.3"
xhtml2pdf = "^0.2.5"
rest-framework-generic-relations = "^2.0.0"
django-grappelli = "^2.15.1"
django-libsass = "^0.8"
watchtower = "^1.0.6"
python_http_client = "^3.3.3"
raven = "^6.10.0"
django-redis = "^5.0.0"
redis-py-cluster = "^2.1.3"
djangorestframework = "^3.12.4"
djangorestframework_simplejwt = "^5.0.0"
stripe = "^2.61.0"
sib-api-v3-sdk = "^7.3.0"
django-nested-admin = "^3.4.0"
tqdm = "^4.62.3"
plaid-python = "^9.1.0"
fontawesomefree = "^6.1.1"
celery = "^5.2.6"
[tool.poetry.extras]
docs = [
"sphinx",
"sphinx-rtd-theme",
"sphinxcontrib.documentedlist",
"sphinxcontrib.httpdomain",
"sphinxcontrib.httpexample"
]
debug = [ "ipython", "ipdb" ]
[tool.poetry.dev-dependencies]
pytest = "^6.2.2"
coverage = "^4.5"
flake8 = "^3.7"
pytest-freezegun = "^0.4.2"
factory-boy = "3.0.1"
pytest-django = "3.10.0"
responses = "^0.12.1"
mock = "4.0.2"
pylint = "2.6.0"
pytest-cov = "^2.10.1"
pytest-pythonpath = "^0.7.3"
flake8_formatter_junit_xml = "^0.0.6"
ipdb = "0.13.4"
autopep8 = "^1.5.5"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"