-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (29 loc) · 1.08 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
#!/usr/bin/env python
import setuptools
from distutils.core import setup
with open("rubberband/version.py") as f:
exec(f.read())
with open('requirements.txt') as requirements:
required = requirements.read().splitlines()
kwargs = {
"name": "rubberband",
"version": str(__version__), # noqa
"packages": setuptools.find_packages(),
"description": "A flexible archiving platform for optimization benchmarks",
"long_description": open("README.md").read(),
"author": "Zuse Institute Berlin",
"maintainer": "Zuse Institute Berlin",
"author_email": "gleixner@zib.de",
"maintainer_email": "gleixner@zib.de",
"license": "MIT",
"install_requires": required[1:],
"url": "https://github.com/ambros-gleixner/rubberband",
"download_url": "https://github.com/ambros-gleixner/rubberband/archive/master.zip",
"classifiers": [
"Programming Language :: Python",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
]
}
setup(**kwargs)