-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
45 lines (44 loc) · 2.01 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
import setuptools
from mutagene.version import __version__
setuptools.setup(name='mutagene',
version=__version__,
description='Mutational analysis with Python',
long_description=open('README.md').read().strip(),
long_description_content_type="text/markdown",
author='Alexander Goncearenco',
author_email='[email protected]',
url='http://www.ncbi.nlm.nih.gov/projects/mutagene/',
install_requires=[
'bayesian-optimization',
'clustergrammer',
'numpy>=1.18',
'pandas>=0.25',
'requests',
'scikit-learn>=0.22',
'scipy>=1.4',
'statsmodels',
'pyvcf',
'twobitreader',
'tqdm'],
test_suite='nose.collector',
tests_require=[
'nose',
'pytest',
'pytest-cov',
'coverage'],
scripts=['bin/mutagene'],
# package_dir={'mutagene': 'src'},
packages=setuptools.find_packages(exclude=["docs", "contrib", "*.tests", "*.tests.*", "tests.*", "tests"]),
include_package_data=True,
license='Public Domain',
zip_safe=False,
keywords='bioinformatics cancer mutations',
classifiers=[
'Programming Language :: Python :: 3 :: Only',
"Operating System :: OS Independent",
'License :: Public Domain',
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Medical Science Apps.',
'Environment :: Console'
])