-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (30 loc) · 1002 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
32
33
34
"""Description
Setup script to install 'stoker' package
Copyright (C) University of Manchester 2018-2021 Peter Briggs
"""
# Setup for installation etc
from setuptools import setup
import stoker
setup(
name = "stoker",
version = stoker.get_version(),
description = 'Utility for curation of NGS data',
long_description = """Utility to help examine and archive NGS data from
SOLiD and Illumina sequencing platforms""",
url = 'https://github.com/pjbriggs/stoker',
maintainer = 'Peter Briggs',
maintainer_email = '[email protected]',
packages = ['stoker'],
entry_points = { 'console_scripts':
['stoker = stoker.cli:main',]
},
license = 'MIT',
# Pull in dependencies
##install_requires = ['genomics-bcftbx',
## 'auto_process_ngs'],
# Enable 'python setup.py test'
test_suite='nose.collector',
tests_require=['nose'],
include_package_data=True,
zip_safe = False
)