-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (32 loc) · 1.32 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
with open('requirements.txt') as f:
requirements = f.read().splitlines()
setuptools.setup(
name="bexhoma",
version="0.7.4",
author="Patrick K. Erdelt",
author_email="[email protected]",
description="This python tools helps managing DBMS benchmarking experiments in a Kubernetes-based HPC cluster environment. It enables users to configure hardware / software setups for easily repeating tests over varying configurations.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Beuth-Erdelt/Benchmark-Experiment-Host-Manager",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: OS Independent",
],
license="GNU Affero General Public License v3",
python_requires='>=3.10.2',
include_package_data=True,
install_requires=requirements,
package_dir={'bexhoma': 'bexhoma'},
entry_points='''
[console_scripts]
tpch=bexhoma.scripts.tpch:do_benchmark
tpcds=bexhoma.scripts.tpcds:do_benchmark
bexperiments=bexhoma.scripts.experimentsmanager:manage
''',
)