-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
57 lines (54 loc) · 1.21 KB
/
pyproject.toml
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
[tool.poetry]
name = "toolhub"
version = "0.1.0"
description = "Makerspace tool management"
authors = ["Patrick Forringer <[email protected]>", "Jeremy Satterfield <[email protected]>"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.7"
django = "=2.1.11"
pycatalog = "=1.2.0"
jinja2 = "=2.10.1"
django-environ = "=0.4.5"
psycopg2-binary = "=2.8.3"
django-extensions = "=2.1.6"
django-tagulous = "=0.14.0"
django-jinja = "=2.4.1"
django-crispy-forms = "=1.7.2"
transitions = "=0.6.9"
django-filter = "^2.0"
django-colorful = "^1.3"
django-markdownx = "=2.0.28"
django-braces = "^1.13"
django-qr-code = "^1.0"
django-memoize = "^2.2"
gunicorn = "^19.9"
whitenoise = "^4.1"
django-allauth = { git = "https://github.com/pennersr/django-allauth.git", commit = "f70cb3d" }
#django-allauth = "^0.39.1"
[tool.poetry.dev-dependencies]
ipdb = "^0.12"
Werkzeug = "=0.15.4"
ipython = "^7.8"
isort = "^4.3"
flake8 = "^3.7"
django-debug-toolbar = "^2.0"
pytest = "^5.3"
pytest-sugar = "^0.9.2"
pytest-django = "^3.7"
pytest-xdist = "^1.28"
black = "^19.3b0"
model-mommy = "^1.6"
[tool.black]
line-length = 99
py37 = true
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.tox
| /static
| /docker
| /scripts
| migrations
)/'''