-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
58 lines (55 loc) · 2.26 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
from setuptools import find_packages, setup
with open('README.md') as f:
long_description = f.read()
RESOURCES = [
'res/misc/slurm.sh.inc', "res/sql/func.compare_region_wise2.sql",
"res/sql/func.experiments.sql", "res/sql/func.recompilation.sql",
"res/sql/func.run_regions.sql", "res/sql/func.total_dyncov_clean.sql",
"res/sql/func.total_speedup.sql", "res/sql/func.compare_region_wise.sql",
"res/sql/func.project_region_time.sql", "res/sql/func.run_durations.sql",
"res/sql/func.speedup.sql", "res/sql/func.total_dyncov.sql",
"res/sql/func.pj-test-eval.sql", "res/sql/func.compilestats_eval.sql",
"res/sql/func.polly_mse.sql", "res/sql/func.profileScopDetection-eval.sql",
"res/wrapping/run_compiler.py.inc", "res/wrapping/run_static.py.inc",
"res/wrapping/run_dynamic.py.inc", "res/patches/linpack.patch"
]
setup(
name='benchbuild',
use_scm_version=True,
url='https://github.com/PolyJIT/benchbuild',
packages=find_packages(
exclude=[
"docs", "extern", "filters", "linker", "src", "statistics", "tests",
"results"
]
),
package_data={"benchbuild": RESOURCES},
include_package_data=True,
setup_requires=["pytest-runner", "setuptools_scm"],
install_requires=[
"Jinja2>=3", "PyYAML>=6", "attrs>=22", "dill>=0", "pathos>=0.3",
"parse>=1", "plumbum>=1", "psutil>=5", "psycopg2-binary>=2",
"pygit2>=1", "pygtrie>=2", "pyparsing>=3", "rich>=13",
"SQLAlchemy>=2", "typing-extensions>=4", "virtualenv>=20",
"schema>=0", "result>=0"
],
author="Andreas Simbuerger",
author_email="[email protected]",
description="This is the experiment driver for the benchbuild study",
long_description=long_description,
long_description_content_type='text/markdown',
license="MIT",
entry_points={
'console_scripts': [
'benchbuild=benchbuild.driver:main',
'container=benchbuild.container:main'
]
},
classifiers=[
'Development Status :: 4 - Beta', 'Intended Audience :: Developers',
'Topic :: Software Development :: Testing',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3'
],
keywords="benchbuild experiments run-time"
)