-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
62 lines (57 loc) · 1.79 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
"""Package configuration."""
from setuptools import find_namespace_packages, setup
# The below list is only for CI
# For prod add the libs to modules/profile/manifests/spicerack.pp
install_requires = [
'aiohttp',
'cryptography',
'packaging',
'prettytable',
'prometheus-client==0.9.0',
'python-dateutil',
'python-gitlab==3.11.0',
'scapy>=2.4.4',
'wikimedia-spicerack',
# on cumin nodes transferpy v1.1 is installed as the Debian package
'transferpy @ git+https://gerrit.wikimedia.org/r/operations/software/[email protected]',
]
# Extra dependencies
extras_require = {
# Test dependencies
'tests': [
'bandit>=1.5.0',
'flake8>=3.2.1',
'mypy>=0.670',
'pytest>=6.1.0',
'types-PyMySQL',
'types-python-dateutil',
'types-PyYAML',
'types-redis',
# Uppe limit because it requires urllib3>2, incompatible with elasticsearch, elasticsearch-curator and botocore
'types-requests<2.31.0.7',
'types-setuptools',
],
'prospector': [
'prospector[with_everything]>=1.12.0',
'pytest>=6.1.0',
],
}
setup_requires = [
'setuptools_scm>=1.15.0',
]
setup(
author='Riccardo Coccioli',
author_email='[email protected]',
description='Wikimedia Foundations production automation and orchestration cookbooks',
extras_require=extras_require,
install_requires=install_requires,
keywords=['wmf', 'automation', 'orchestration', 'cookbooks'],
license='GPLv3+',
name='wikimedia-cookbooks',
packages=find_namespace_packages(include=['cookbooks'], exclude=['*.tests', '*.tests.*']),
platforms=['GNU/Linux'],
setup_requires=setup_requires,
use_scm_version=True,
url='https://github.com/wikimedia/operations-cookbooks',
zip_safe=False,
)