-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
86 lines (78 loc) · 2.56 KB
/
setup.py
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
"""Package configuration."""
from setuptools import find_packages, setup
with open('README.rst', 'r') as readme:
LONG_DESCRIPTION = readme.read()
INSTALL_REQUIRES = [
"dnspython>=1.15.0",
'pyyaml>=3.11',
'phabricator>=0.7.0',
'requests',
]
# Extra dependencies
EXTRAS_REQUIRE = {
# Test dependencies
'tests': [
'bandit>=1.5.1',
'flake8>=3.2.1',
'flake8-import-order>=0.18.1',
'mypy>=0.470',
'pytest>=3.10.1',
'pytest-cov>=1.8.0',
'pytest-xdist>=1.15.0',
'requests-mock>=1.5.2',
'sphinx_rtd_theme>=1.0',
'sphinx-argparse>=0.1.15',
'Sphinx>=1.4.9',
# We still rely on pkg_resources to support Python 3.7/Buster but it
# was removed from types-setuptools
'types-setuptools<75.8.2.20250305',
'types-PyYAML',
'types-requests',
],
'prospector': [
'prospector[with_everything]>=0.12.4',
'pytest>=3.10.1',
],
}
SETUP_REQUIRES = [
'pytest-runner>=2.7.1',
'setuptools_scm>=1.15.0',
]
setup(
author='Luca Toscano',
author_email='[email protected]',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Environment :: Console',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX :: BSD',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Systems Administration',
],
description='Generic library for common tasks in the WMF production infrastructure',
entry_points={},
extras_require=EXTRAS_REQUIRE,
install_requires=INSTALL_REQUIRES,
keywords=['wmf', 'automation'],
license='GPLv3+',
long_description=LONG_DESCRIPTION,
long_description_content_type='text/x-rst',
name='wmflib',
package_data={'wmflib': ['py.typed']},
packages=find_packages(exclude=['*.tests', '*.tests.*']),
platforms=['GNU/Linux'],
python_requires='>=3.7',
setup_requires=SETUP_REQUIRES,
use_scm_version=True,
url='https://github.com/wikimedia/operations-software-pywmflib',
zip_safe=False,
)