-
Notifications
You must be signed in to change notification settings - Fork 19
/
setup.py
46 lines (40 loc) · 1.37 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
from setuptools import setup, find_packages
import glob
import os
import sys
from taca import __version__
try:
with open("requirements.txt", "r") as f:
install_requires = [x.strip() for x in f.readlines()]
except IOError:
install_requires = []
try:
with open("dependency_links.txt", "r") as f:
dependency_links = [x.strip() for x in f.readlines()]
except IOError:
dependency_links = []
setup(name='taca',
version=__version__,
description="Tool for the Automation of Cleanup and Analyses",
long_description='This package contains a set of functionalities that are '
'useful in the day-to-day tasks of bioinformatitians in '
'National Genomics Infrastructure in Stockholm, Sweden.',
keywords='bioinformatics',
author='Guillermo Carrasco',
author_email='[email protected]',
url='http://taca.readthedocs.org/en/latest/',
license='MIT',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
scripts=glob.glob('scripts/*.py'),
include_package_data=True,
zip_safe=False,
entry_points={
'console_scripts': ['taca = taca.cli:cli'],
'taca.subcommands': [
'storage = taca.storage.cli:storage',
'analysis = taca.analysis.cli:analysis',
]
},
install_requires=install_requires,
dependency_links=dependency_links
)