-
-
Notifications
You must be signed in to change notification settings - Fork 28
/
setup.cfg
88 lines (79 loc) · 2.1 KB
/
setup.cfg
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
[metadata]
name = rdiffweb
description = A web interface to rdiff-backup repositories.
long_description = file: README.md
long_description_content_type = text/markdown
url=https://rdiffweb.org/
author=Patrik Dufresne
author_email=patrik@ikus-soft.com
license = 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
[options]
packages = find_namespace:
include_package_data = True
install_requires =
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
requests
sqlalchemy>=1.2,<3
WTForms
zxcvbn>=4.4.27
setup_requires =
babel>=0.9.6
setuptools_scm
python_requires = >=3.6, <4
project_urls={ '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', }
[options.packages.find]
include = rdiffweb
[options.entry_points]
console_scripts =
rdiffweb = rdiffweb.main:main
[options.extras_require]
test =
html5lib
pytest
parameterized
responses
selenium
[extract_messages]
keywords = _ gettext ngettext
mapping_file = babel.cfg
output-file = rdiffweb/locales/messages.pot
input-dirs = rdiffweb
width = 80
[init_catalog]
domain = messages
input-file = rdiffweb/locales/messages.pot
output-dir = rdiffweb/locales
[update_catalog]
domain = messages
input-file = rdiffweb/locales/messages.pot
output-dir = rdiffweb/locales
[compile_catalog]
domain = messages
directory = rdiffweb/locales
[compile_all_catalogs]
locales = en, fr, ru, es, ca
domain = messages
directory = rdiffweb/locales