-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
69 lines (61 loc) · 1.5 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
[build-system]
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "udb"
authors = [
{name = "Patrik Dufresne", email = "[email protected]"},
]
description = "Web application used to manage records to configure enterprise network with ansible-playbook."
readme = "README.md"
requires-python = ">=3.6, <4"
license = {text = "GPLv3"}
classifiers = [
"Development Status :: 4 - Beta",
"Framework :: CherryPy",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
dependencies = [
"apscheduler",
"argon2-cffi>=18.3.0",
"babel",
"CherryPy>18",
"configargparse",
"email_validator",
"Jinja2",
"ldap3",
"requests",
"ujson",
"sqlalchemy>=1.4,<3",
"validators",
"WTForms>=2.2.1",
"zxcvbn>=4.4.27",
]
dynamic = ["version"]
[project.optional-dependencies]
test = [
"html5lib",
"parameterized",
"pytest",
"response",
"selenium",
]
[project.scripts]
udb = "udb.main:main"
[project.urls]
Homepage = "https://gitlab.com/ikus-soft/udb"
[tool.black]
line-length = 120
skip-string-normalization = "True"
[tool.isort]
profile = "black"
line_length = 120
[tool.djlint]
indent=2
[tool.setuptools_scm]