-
-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpyproject.toml
76 lines (68 loc) · 1.78 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
[build-system]
requires = ["setuptools>=66", "setuptools_scm[toml]>=6.2", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "rdiffweb"
authors = [
{name = "Patrik Dufresne", email = "[email protected]"},
]
description = "A web interface to rdiff-backup repositories."
readme = "README.md"
requires-python = ">=3.8, <4"
license = {text = "GPLv3"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
"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",
"Framework :: CherryPy"
]
dependencies = [
"apscheduler",
"argon2-cffi>=18.3.0",
"babel>=0.9.6",
"cached-property",
"CherryPy>=8.9.1",
"configargparse",
"distro",
"humanfriendly",
"Jinja2>=2.10",
"ldap3",
"MarkupSafe<3",
"packaging",
"psutil>=2.1.1",
"pytz",
"requests",
"sqlalchemy>=1.2,<3",
"WTForms",
"zxcvbn>=4.4.27"
]
dynamic = ["version"]
[tool.setuptools]
packages = ["rdiffweb"]
[project.optional-dependencies]
test = [
"html5lib",
"pytest",
"parameterized",
"responses",
"selenium"
]
[project.scripts]
rdiffweb = "rdiffweb.main:main"
[project.urls]
Homepage = "https://rdiffweb.org"
documentation = "https://www.ikus-soft.com/archive/rdiffweb/doc/latest/html/"
source = "https://gitlab.com/ikus-soft/rdiffweb"
bug_tracker = "https://gitlab.com/ikus-soft/rdiffweb/-/issues"
[tool.black]
line-length = 120
skip-string-normalization = "True"
[tool.djlint]
indent=2
[tool.setuptools_scm]