-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
executable file
·54 lines (51 loc) · 1.75 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
48
49
50
51
52
53
54
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
with open("mitylib/_version.py", "r") as fh:
version = fh.read().replace("__version__ = ", "").strip('""\n')
setuptools.setup(
name="mitywgs",
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="Clare Puttick",
author_email="clare.puttick@gmail.com",
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=[
'pyvcf',
'pysam',
'pandas',
'xlsxwriter',
'pyfastx',
'scipy'
],
python_requires='>=3.5.3',
package_data={'mitylib': ['verchew.ini', 'annot/*', 'reference/*']},
include_package_data=True,
scripts=["mity"]
)