-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
executable file
·86 lines (80 loc) · 2.29 KB
/
pyproject.toml
File metadata and controls
executable file
·86 lines (80 loc) · 2.29 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
82
83
84
85
86
[tool.poetry]
name = "novizi"
version = "0.1.0"
description = "event management and ticketing service. Allows users to browse, create, and promote local events."
authors = ["Strategy Tap <strategy-tap@example.com>"]
license = "MIT"
readme = "README.md"
homepage = "novizi.com"
documentation = ""
repository = "https://github.com/Strategy-Tap/Novizi-BackEnd"
keywords = ["novizi"]
[tool.poetry.dependencies]
python = "3.8.3"
argon2-cffi = "^20.1.0"
confusable_homoglyphs = "^3.2.0"
dj-database-url = "^0.5"
dj-rest-auth = {extras = ["with_social"], version = "^1.0"}
django = "^3.0"
djangorestframework = "^3.11"
djangorestframework-simplejwt = "^4.4.0"
django-axes = "^5.3"
django-cors-headers = "^3.4"
django-filter = "^2.3"
django-import-export = "^2.2"
django-storages = {extras = ["dropbox"], version = "^1.9"}
django-simple-history = "^2.10.0"
drf-yasg = "^1.17"
gunicorn = "^20.0"
Pillow = "^7.1"
psycopg2-binary = "^2.8"
python-decouple = "^3.3"
pwned-passwords-django = "^1.4"
whitenoise = {extras = ["brotli"], version = "^5.1"}
django-geojson = {extras = ["field"], version = "^3.0.0"}
pydantic = "^1.5.1"
[tool.poetry.dev-dependencies]
black = "^19.10b0"
coverage = {extras = ["toml"], version = "^5.1"}
django-coverage-plugin = "^1.8"
django-debug-toolbar = "^2.2"
darglint = "^1.4"
flake8 = "^3.8"
flake8-annotations = "^2.1.0"
flake8-bandit = "^2.1.2"
flake8-black = "^0.2.0"
flake8-bugbear = "^20.1.4"
flake8-docstrings = "^1.5.0"
flake8-import-order = "^0.18.1"
isort = {extras = ["pyproject"], version = "^4.3.21"}
mypy = "^0.780"
mkdocs = "^1.1"
mkdocs-material = "^5.3"
mkdocstrings = "^0.11"
mkdocs-minify-plugin = "^0.3.0"
mkdocs-git-revision-date-localized-plugin = "^0.5.2"
pytest = "^5.4.2"
pytest-cov = "^2.10"
pytest-django = "^3.9"
radon = "^4.1"
safety = "^1.9.0"
xdoctest = "^0.12.0"
[tool.coverage.run]
branch = true
source = ["novizi"]
plugins = "django_coverage_plugin"
[tool.coverage.report]
show_missing = true
fail_under = 84
[tool.isort]
known_typing = "typing,types,typing_extensions,mypy,mypy_extensions"
sections = "FUTURE,TYPING,STDLIB,THIRDPARTY,FIRSTPARTY,LOCALFOLDER"
include_trailing_comma = true
default_section = "FIRSTPARTY"
multi_line_output = 3
force_grid_wrap = 0
use_parentheses = true
line_length = 80
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"