-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathsetup.py
80 lines (66 loc) · 2.64 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
from codecs import open
from os import path
from setuptools import setup, find_packages
__version__ = '1.0.720' # update also .bumpversion.cfg
here = path.abspath(path.dirname(__file__))
if path.isfile(path.join(here, 'README.md')):
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
else:
long_description = ""
setup(
name='benchmark-runner',
version=__version__,
description='Benchmark Runner Tool',
long_description=long_description,
long_description_content_type='text/markdown',
author='Red Hat',
author_email='[email protected]',
url='https://github.com/redhat-performance/benchmark-runner',
license="Apache License 2.0",
classifiers=[
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
],
zip_safe=False,
# Find all packages (__init__.py)
packages=find_packages(include=['benchmark_runner', 'benchmark_runner.*']),
install_requires=[
'attrs==21.4.0', # readthedocs
'azure==4.0.0',
'boto3==1.33.13', # s3
'botocore==1.33.13', # s3
'cryptography==43.0.1', # for paramiko
'elasticsearch==7.16.1',
'elasticsearch-dsl==7.4.0', # for deep search
'google-auth==2.30.0', # for Google Drive
'google-auth-httplib2==0.2.0', # for Google Drive
'google-auth-oauthlib==1.2.0', # for Google Drive
'google-api-python-client==2.135.0', # for Google Drive
'ipywidgets==8.0.6', # for jupyterlab widgets
'jinja2==3.1.5', # for yaml templates and df.style
'myst-parser==1.0.0', # readthedocs
'openshift-client==1.0.17', # clusterbuster && prometheus metrics
'prometheus-api-client==0.5.1', # clusterbuster && prometheus metrics
'pandas', # required latest
'paramiko==3.4.0',
'PyGitHub==1.55', # update secrets
'PyYAML==6.0.1',
'setuptools', # for python3.12
'sphinx==5.0.0', # readthedocs
'sphinx-rtd-theme==1.0.0', # readthedocs
'tenacity==8.0.1', # retry decorator
'tqdm==4.66.3', # for jupyterlab download file
'typeguard==2.12.1',
'typing==3.7.4.3',
# must add new package inside requirements.txt
],
setup_requires=['pytest', 'pytest-runner', 'wheel', 'coverage'],
include_package_data=True,
# dependency_links=[]
)