-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·26 lines (24 loc) · 943 Bytes
/
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
from setuptools import setup, find_packages
with open('README.md') as f:
long_description = f.read()
setup(
name='polyjit.experiments',
use_scm_version=True,
url='https://github.com/PolyJIT/polyjit.experiments',
packages=find_packages(),
setup_requires=["pytest-runner", "setuptools_scm"],
tests_require=["pytest"],
install_requires=["benchbuild>=3.3.1"],
author="Andreas Simbuerger",
author_email="simbuerg@fim.uni-passau.de",
description="Additional experiments used by PolyJIT with BenchBuild.",
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")