-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
51 lines (48 loc) · 1.19 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
#!/usr/bin/env python
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
config = {
'name': 'filtus',
'version': "1.0.5",
'description': 'Analysis of exome variant files',
'long_description': open('README.md').read(),
'author': 'Magnus Dehli Vigeland',
'author_email': '[email protected]',
'license': 'GPL-2',
'url': 'https://github.com/magnusdv/filtus',
#'download_url': 'https://github.com/magnusdv/filtus/tarball/v1.0.0',
'install_requires': [
'matplotlib',
'pmw'
],
'packages': [
'filtus'
],
'classifiers': [
'Programming Language :: Python :: 2.7',
'License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)'
],
'keywords': [
'exome',
'variant filtering',
'vcf',
'de novo',
'autozygosity mapping'
],
'entry_points': {
'console_scripts': [
'filtus = filtus.Filtus:main'
]
},
'package_data': {
'filtus': [
'man/pictures/*.png',
'man/*.html',
'data/*',
'testfiles/*'
]
}
}
setup(**config)