-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
44 lines (39 loc) · 1.09 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
"""
Setup for Zippy (zippy)
"""
from setuptools import setup, find_packages
package = __import__('zippy')
def readme():
with open('README.md') as f:
return f.read()
try:
long_desc = readme()
except IOError as err:
long_desc = str(err)
try:
version_str = open('version.txt').read()
except IOError as err:
version_str = '2.0.0'
setup(
name='zippy-pipeline',
long_description=long_desc,
url='https://github.com/Illumina/zippy',
download_url='https://github.com/Illumina/zippy/archive/2.1.3.tar.gz',
author='Aaron Wise',
author_email='[email protected]',
license='Apache 2.0',
install_requires=[
'commentjson',
'pybloomfiltermmap',
'pyflow>=1.1.0'
],
dependency_links=['https://github.com/Illumina/pyflow/releases/download/v1.1.17/pyflow-1.1.17.tar.gz'],
version=version_str,
description='NGS Pipeline Prototyping Tool for Python',
include_package_data=True,
packages=find_packages(),
test_suite='nose.collector',
tests_require=['nose'],
scripts=[],
requires=[],
zip_safe=False)