-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
44 lines (40 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
#!/usr/bin/env python
import setuptools
MAJOR = 0
MINOR = 11
PRERELEASE = 'alpha'
ISRELEASED = False
if PRERELEASE:
VERSION = '%d.%d-%s' % (MAJOR, MINOR, PRERELEASE)
else:
VERSION = '%d.%d' % (MAJOR, MINOR)
with open("README.md", "r") as fp:
long_description = fp.read()
setuptools.setup(
name='VenomSeq',
version=VERSION,
description='Python code for performing the data analysis in the VenomSeq workflow',
long_description=long_description,
long_description_content_type="text/markdown",
author='Joseph D. Romano',
author_email='jdromano2@gmail.com',
url='https://github.com/jdromano2/venomseq',
packages=['venomseq'],
package_dir={'venomseq': 'venomseq'},
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3.6",
"Topic :: Scientific/Engineering :: Bio-Informatics"
],
install_requires=[
'numpy',
'scipy',
'pandas',
'matplotlib',
'tqdm'
]
)