-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
48 lines (45 loc) · 1.13 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
#!/usr/bin/env python
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
config = {
'name': 'vcfped',
'version': "1.3.0",
'description': 'Identification of trios and other close relationships in multisample VCF files',
'long_description': open('README.md').read(),
'author': 'Magnus Dehli Vigeland',
'author_email': 'magnusdv@medisin.uio.no',
'license': 'GPL-2',
'url': 'https://github.com/magnusdv/vcfped',
'install_requires': [
'tabulate'
],
'packages': [
'vcfped'
],
'classifiers': [
'Programming Language :: Python :: 2.7',
'License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)'
],
'keywords': [
'trio',
'relatedness',
'variant files',
'vcf',
'high-throughput sequencing',
'exome sequencing',
'family-based sequencing'
],
'entry_points': {
'console_scripts': [
'vcfped = vcfped.vcfped:main'
]
},
'package_data': {
'vcfped': [
'testfiles/*'
]
}
}
setup(**config)