forked from hexylena/galaxyxml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
23 lines (21 loc) · 776 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
from setuptools import setup
from pip.req import parse_requirements
import sys, os
if sys.argv[-1] == 'publish':
os.system("python setup.py sdist bdist_wheel upload; git push")
sys.exit()
setup(name="galaxyxml",
version='0.2.3',
description='Galaxy XML generation library',
author='Eric Rasche',
author_email='[email protected]',
install_requires=['lxml'],
packages=["galaxyxml", "galaxyxml.tool", "galaxyxml.tool.parameters"],
classifiers=[
'Development Status :: 3 - Alpha',
'Operating System :: OS Independent',
'Intended Audience :: Developers',
'Environment :: Console',
'License :: OSI Approved :: Apache Software License',
],
)