forked from gymrek-lab/TRTools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
46 lines (43 loc) · 1.53 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
DESCRIPTION = "Toolkit for genome-wide analysis of STRs"
LONG_DESCRIPTION = DESCRIPTION
NAME = "strtools"
AUTHOR = "Melissa Gymrek"
AUTHOR_EMAIL = "mgymrek@ucsd.edu"
MAINTAINER = "Melissa Gymrek"
MAINTAINER_EMAIL = "mgymrek@ucsd.edu"
DOWNLOAD_URL = 'http://github.com/gymreklab/STRTools'
LICENSE = 'MIT'
VERSION = '1.0.0'
setup(name=NAME,
version=VERSION,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
author=AUTHOR,
author_email=AUTHOR_EMAIL,
maintainer=MAINTAINER,
maintainer_email=MAINTAINER_EMAIL,
url=DOWNLOAD_URL,
download_url=DOWNLOAD_URL,
license=LICENSE,
packages=find_packages(),
entry_points={
'console_scripts': [
'plinkSTR=plinkSTR.plinkSTR:main',
'dumpSTR=dumpSTR.dumpSTR:main',
'mergeSTR=mergeSTR.mergeSTR:main',
'statSTR=statSTR.statSTR:main',
'postmaSTR=postmaSTR.postmaSTR:main'
],
},
install_requires=['argparse',
'numpy',
'pybedtools',
'pyvcf'],
classifiers=['Development Status :: 4 - Beta',\
'Programming Language :: Python :: 3.2',\
'License :: OSI Approved :: MIT License',\
'Operating System :: OS Independent',\
'Intended Audience :: Science/Research',\
'Topic :: Scientific/Engineering :: Bio-Informatics']
)