forked from stustapay/stustapay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
108 lines (95 loc) · 2.06 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
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
[build-system]
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "stustapay"
license = { file = "LICENSE" }
dynamic = ["version"]
readme = "README.md"
classifiers = [
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Affero General Public License v3 (AGPLv3)",
]
requires-python = ">=3.11"
dependencies = [
"fastapi==0.103.2",
"typer==0.9.0",
"python-multipart==0.0.6",
"uvicorn[standard]==0.22.0",
"passlib[bcrypt]==1.7.4",
"asyncpg==0.28.0",
"PyYAML==6.0",
"python-jose[cryptography]==3.3.0",
"Jinja2==3.1.2",
"aiohttp==3.8.4",
"pylatexenc==2.10",
"schwifty==2023.6.0",
"sepaxml==2.6.1",
"asn1crypto==1.5.1",
"ecdsa==0.18.0",
"dateutils==0.6.12",
"pydantic[email]==2.4",
]
[project.scripts]
stustapay = "stustapay.cli.main:main"
[project.optional-dependencies]
test = [
"pytest",
"pytest-cov",
]
dev = [
"black",
"isort",
"mypy",
"pylint",
"types-PyYAML",
"types-python-dateutil",
"types-pytz",
]
[project.urls]
Website = "https://stustapay.de"
Docs = "https://stustapay.de/docs"
Source = "https://github.com/stustapay/stustapay"
[tool.setuptools.packages.find]
#where = [""]
namespaces = false
#include = ["stustapay*"]
exclude = ["stustapay.tests*", "tests*"]
[tool.pylint]
extension-pkg-whitelist = [
"pydantic"
]
[tool.pylint.format]
max-line-length = 120
[tool.pylint.messages_control]
disable = [
"C",
"R",
"fixme",
"logging-fstring-interpolation",
"unspecified-encoding",
"broad-exception-raised",
"broad-exception-caught"
]
[tool.black]
line-length = 120
target-version = ["py39"]
[tool.isort]
profile = "black"
[tool.mypy]
ignore_missing_imports = true
# check_untyped_defs = true # TODO: enable ass soon as the checks would pass
pretty = true
plugins = [
"pydantic.mypy"
]
[tool.coverage.run]
source = [
"stustapay"
]
[tool.pytest.ini_options]
minversion = "6.0"
testpaths = [
"stustapay.tests",
]