-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·28 lines (26 loc) · 1.06 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
from setuptools import setup, find_namespace_packages
with open('README.md') as f:
long_description = f.read()
setup(name='benchbuild.experiments',
use_scm_version=True,
url='https://github.com/PolyJIT/benchbuild.experiments',
packages=find_namespace_packages(include=['benchbuild.experiments']),
setup_requires=["pytest-runner", "setuptools_scm"],
tests_require=["pytest"],
install_requires=[
"benchbuild>4.0.1",
],
author="Andreas Simbuerger",
author_email="[email protected]",
description=
"Experiments curated for the benchbuild empirical research toolkit.",
long_description=long_description,
long_description_content_type='text/markdown',
license="MIT",
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")