This repository was archived by the owner on Jul 18, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
81 lines (63 loc) · 1.86 KB
/
pyproject.toml
File metadata and controls
81 lines (63 loc) · 1.86 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
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "autodonate"
description = "Free auto-donate site."
version = "0.3.0-alpha.dev"
license = "AGPL3"
authors = [
"PerchunPak <perchunpak@gmail.com>",
"cofob <cofob@riseup.net>"
]
readme = "README.md"
repository = "https://github.com/fire-square/autodonate"
[tool.poetry.dependencies]
python = "^3.8"
# Our dependecies
Django = "^4"
dj-database-url = "^0.5"
py-ubjson = "^0.16.1"
django-axes = "^5.35"
django-stubs-ext = "^0.5"
python-decouple = "^3"
structlog = "21.5.0"
### For colors in structlog ###
### Only needed for Windows ###
colorama = { version = "*", markers="platform_system == 'Windows'" }
# Docs
sphinx = { version = "^4.5", optional = true }
sphinx-autodoc-typehints = { version = "^1.18", optional = true }
sphinx-autoapi = { version = "^1.8", optional = true }
furo = { version = "*", optional = true }
m2r2 = { version = "^0.3", optional = true }
tomli = { version = "^2.0", optional = true }
# Visual Studio Code fix. See CONTRIBUTING.md.
pylint-django = { version = "^2.5", optional = true }
[tool.poetry.dev-dependencies]
black = "^22"
isort = "^5.10"
pycln = "^1.3"
doc8 = "^0.11"
pre-commit = "^2.18"
mypy = "0.942"
flake8 = "^4"
flake8-docstrings = "^1"
pydocstyle = ">=4.0.0"
safety = "^1.10"
django-debug-toolbar = "^3.5"
django-querycount = "^0.7"
nplusone = "^1.0"
pytest = "^7.1"
pytest-cov = "^3.0"
pytest-mock = "^3.7"
pytest-django = "^4.5"
pytest-testmon = "^1.3"
pytest-randomly = "^3.11"
[tool.poetry.extras]
docs = ["sphinx", "sphinx-autodoc-typehints", "sphinx-autoapi", "furo", "m2r2", "tomli"]
vscode-fix = ["pylint-django"]
[tool.black]
line-length = 120
extend-exclude = "autodonate/migrations"
target-version = ['py310']