-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
37 lines (33 loc) · 1.1 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
from distutils.core import setup
from setuptools import find_packages
from prince import __version__
classifiers = """
Development Status :: 4 - Beta
Environment :: Console
License :: OSI Approved :: MIT License
Intended Audience :: Science/Research
Topic :: Scientific/Engineering
Topic :: Scientific/Engineering :: Bio-Informatics
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3.6
Operating System :: POSIX :: Linux
""".strip().split('\n')
setup(name='prince',
version=__version__,
description='PRINCE estimates Variable Number Tandem Repeats (VNTR) copy number from raw next generation sequencing (NGS) data.',
author='Julius Booth, Margaryta Vityaz, Merhdad Mansouri, Leonid Chindelevitch',
author_email='',
url='https://github.com/WGS-TB/PythonPRINCE',
license='MIT',
classifiers=classifiers,
install_requires=[
'biopython',
'scipy',
'numpy'
],
test_suite='nose.collector',
tests_require=['nose'],
packages=find_packages(),
include_package_data=True,
scripts=['bin/prince']
)