forked from broadinstitute/fiss
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (38 loc) · 1.19 KB
/
setup.py
File metadata and controls
41 lines (38 loc) · 1.19 KB
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
import os
from setuptools import setup, find_packages
from firecloud.__about__ import __version__
_README = os.path.join(os.path.dirname(__file__), 'README')
_LONG_DESCRIPTION = open(_README).read()
# Setup information
setup(
name = 'firecloud',
version = __version__,
packages = find_packages(),
description = 'Firecloud API bindings and FISS CLI',
author = 'Tim DeFreitas',
author_email = 'timdef@broadinstitute.org',
long_description = _LONG_DESCRIPTION,
entry_points = {
'console_scripts': [
'fissfc = firecloud.fiss:main_as_cli'
# Disable until fiss is formally deprecated
# 'fiss = firecloud.fiss:main'
]
},
test_suite = 'nose.collector',
install_requires = [
'oauth2client',
'pydot',
'requests',
'six',
'yapsy',
'pylint==1.7.1'
],
classifiers = [
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Interface Engine/Protocol Translator",
],
)