-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
24 lines (23 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
from setuptools import setup, find_packages
setup(name="mucor",
version="1.51",
description="Genomic Variant Aggregation and Mutation Correlation",
author="James Blachly",
author_email="james blachly at gmail com",
license="GNU GPLv3",
url="http://github.com/blachlylab/mucor",
packages=find_packages(),
include_package_data=True,
install_requires=["pandas", "numpy", "pytabix", "xlsxwriter"],
scripts=['mucor.py', 'mucor_config.py', 'depth_gauge.py'],
keywords = "sequencing, VCF, mutation, variant",
classifiers = [ "Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Healthcare Industry",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Scientific/Engineering :: Bio-Informatics" ]
)