-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
46 lines (43 loc) · 1.56 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 = "WebSTR: a population-wide database of short tandem repeat variation in humans"
LONG_DESCRIPTION = DESCRIPTION
NAME = "WebSTR"
AUTHOR = "Richard Yanicky"
AUTHOR_EMAIL = "mgymrek@eng.ucsd.edu"
MAINTAINER = "Melissa Gymrek"
MAINTAINER_EMAIL = "mgymrek@eng.ucsd.edu"
DOWNLOAD_URL = 'http://github.com/gymreklab/dbstr'
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(),
package_data={
'WebSTR': ['static/css/*.css',
'static/*.js',
'templates/*.html']
},
entry_points={
'console_scripts': [
'WebSTR = WebSTR.WebSTR:main',
],
},
install_requires=['argparse', 'flask', 'pandas','plotly',\
'numpy', 'pyfaidx'],
classifiers=['Development Status :: 4 - Beta',\
'Programming Language :: Python :: 3.4',\
'License :: OSI Approved :: MIT License',\
'Operating System :: OS Independent',\
'Intended Audience :: Science/Research',\
'Topic :: Scientific/Engineering :: Bio-Informatics',\
'Topic :: Scientific/Engineering :: Visualization']
)