-
Notifications
You must be signed in to change notification settings - Fork 19
/
setup.py
64 lines (60 loc) · 1.92 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
55
56
57
58
59
60
61
62
63
64
import sys
import os
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup
import pkg_resources
# Shortcut for building/publishing to Pypi
if sys.argv[-1] == 'publish':
os.system('python setup.py sdist bdist_wheel upload')
sys.exit()
# For making things look nice on pypi:
try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
except (IOError, ImportError, RuntimeError):
long_description = 'Tool for annotating patterns of genetic inheritance in Variant Call Format (VCF) files.'
setup(name='genmod',
version='3.9',
description='Annotate genetic inheritance models in variant files',
author = 'Mans Magnusson',
author_email = '[email protected]',
url = 'http://github.com/Clinical-Genomics/genmod',
license = 'MIT License',
python_requires="~=3.8.0",
install_requires=[
'ped_parser >= 1.6.6',
'pytabix >= 0.1',
'pytest >= 7.3.1',
'interval_tree >= 0.3.4',
'click >= 8.1.3',
'configobj >= 5.0.8',
'intervaltree >= 3.1.0',
'extract_vcf >= 0.5',
'vcftoolbox >= 1.5.1',
'six >= 1.16.0',
],
packages=find_packages(
exclude=('tests*', 'docs', 'examples', 'configs')
),
# package_data = {
# 'genmod': ['annotations/*']
# },
include_package_data = True,
entry_points= { "console_scripts" : [
"genmod = genmod.commands.base:cli",
]
},
keywords = ['inheritance', 'vcf', 'variants'],
classifiers = [
"Programming Language :: Python",
"License :: OSI Approved :: MIT License",
"Development Status :: 4 - Beta",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Unix",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
],
long_description = long_description,
)