-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
50 lines (45 loc) · 1.46 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
import ast
import os
import re
import setuptools
reg = re.compile(r"__version__\s*=\s*(.+)")
with open(os.path.join("galaxycloudrunner", "__init__.py")) as f:
for line in f:
m = reg.match(line)
if m:
version = ast.literal_eval(m.group(1))
break
with open("README.md", "r") as fh:
long_description = fh.read()
REQS_FULL = [
"cachetools==3.1.0",
"cloudlaunch-cli==0.2.1"
]
setuptools.setup(
name="galaxycloudrunner",
description="A library for supporting cloud bursting in Galaxy.",
version=version,
author="Galaxy and GVL projects",
author_email="[email protected]",
license="MIT",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/cloudve/galaxycloudrunner",
packages=setuptools.find_packages(),
install_requires=REQS_FULL,
extras_require={
'dev': (['sphinx', 'sphinx_rtd_theme'] + REQS_FULL)
},
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6"
],
)