-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
executable file
·42 lines (41 loc) · 948 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
from setuptools import setup, find_packages
setup(name='gbd_tools',
version='4.9.7',
description='GBD Tools: Maintenance and Distribution of Benchmark Instances and their Attributes',
long_description=open('README.md', 'rt').read(),
long_description_content_type="text/markdown",
url='https://github.com/Udopia/gbd',
author='Markus Iser',
author_email='[email protected]',
packages=[
"gbd_core",
"gbd_init",
"gbd_server"
],
scripts=[
"gbd.py"
],
include_package_data=True,
setup_requires=[
'wheel',
'setuptools'
],
install_requires=[
'flask',
'tatsu',
'pandas',
'waitress',
'pebble',
'gbdc'
],
install_obsoletes=['global-benchmark-database-tool'],
classifiers=[
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3"
],
entry_points={
"console_scripts": [
"gbd = gbd:main"
]
}
)