-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsetup.py
52 lines (51 loc) · 1.63 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
51
52
import sys
if sys.version_info.major < 3 or sys.version_info.minor < 2:
raise ValueError("Dalmatian is only compatible with Python 3.3 and above")
if sys.version_info.minor < 5:
import warnings
warnings.warn("Dalmatian may not function properly on Python < 3.5")
import os
import re
from setuptools import setup, find_packages
with open("dalmatian/__init__.py") as reader:
__version__ = re.search(
r'__version__ ?= ?[\'\"]([\w.]+)[\'\"]',
reader.read()
).group(1)
_README = os.path.join(os.path.dirname(__file__), 'README.md')
_LONG_DESCRIPTION = open(_README).read()
# Setup information
setup(
name = 'firecloud-dalmatian',
version = __version__,
packages = find_packages(),
description = 'A friendly companion for FISS',
author = 'Broad Institute - Cancer Genome Computational Analysis',
author_email = 'gdac@broadinstitute.org',
long_description = _LONG_DESCRIPTION,
long_description_content_type = 'text/markdown',
entry_points = {
'console_scripts': [
'dalmatian = dalmatian.core:main'
]
},
install_requires = [
'numpy',
'matplotlib',
'pandas',
'pytz',
'firecloud>=0.16.9',
'ipython',
'iso8601',
'google-cloud-storage>=1.13.2',
'agutil>=4.0.2',
'crayons>=0.2.0',
'hound>=0.2.0',
],
classifiers = [
"Programming Language :: Python :: 3",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Interface Engine/Protocol Translator",
],
)