forked from clareputtick/mity
-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
executable file
·47 lines (44 loc) · 1.71 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
47
import setuptools
with open("mitylib/_version.py", "r") as fh:
version = fh.read().replace("__version__ = ", "").strip('""\n')
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="{NAME}",
version=version,
description="A sensitive Mitochondrial variant detection pipeline from WGS data",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/KCCG/mity",
author="Mark Cowley",
author_email="[email protected]",
license="MIT",
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Environment :: MacOS X",
"Intended Audience :: Science/Research",
"Intended Audience :: Healthcare Industry",
"License :: Free for non-commercial use",
"Natural Language :: English",
"Operating System :: MacOS",
"Operating System :: POSIX",
"Operating System :: Unix",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Scientific/Engineering :: Bio-Informatics",
],
keywords="mitochondrial DNA genomics variant SNV INDEL",
project_urls={
"Documentation": "https://github.com/KCCG/mity/",
"Source": "https://github.com/KCCG/mity/",
"Funding": "http://garvan.org.au/kccg",
},
packages=setuptools.find_packages(),
install_requires=["pysam", "pandas", "xlsxwriter", "scipy", "pyyaml"],
python_requires=">=3.5.4",
package_data={"mitylib": ["annot_mt/*", "annot_chrm/*", "reference/*", "config/*"]},
include_package_data=True,
scripts=["mitylib/mity"],
)