forked from broadinstitute/fcgdctools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (27 loc) · 930 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
#TBD
# long_description from README
# version - either from version file or from python function
from setuptools import setup, find_packages
setup(
name = 'fcgdctools',
packages = ['fcgdctools'],
version = '0.1.13',
description = 'Utilities for integrating FireCloud and GDC',
author = 'Chet Birger',
author_email = '[email protected]',
url = 'https://github.com/broadinstitute/fcgdctools',
classifiers = [
"Programming Language :: Python :: 3",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Development Status :: 2 - Pre-Alpha"
],
entry_points={
'console_scripts': [
'genFcWsLoadFiles=fcgdctools.fc_loadfiles:main',
],
},
install_requires=['requests']
)