forked from CenterForMedicalGeneticsGhent/WisecondorX
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (42 loc) · 1.51 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
#! /usr/bin/env python
from setuptools import setup, find_packages
version = '0.1.1dev'
dl_version = 'master' if 'dev' in version else '{}'.format(version)
setup(
name='WisecondorX',
version=version,
author='Matthias De Smet, Lennart Raman',
author_email='[email protected]',
description="WisecondorX -- an evolved WISECONDOR",
long_description=__doc__,
keywords=['bioinformatics', 'biology', 'sequencing', 'NGS', 'next generation sequencing',
'CNV', 'SWGS', 'Shallow Whole Genome Sequencing'],
download_url='https://github.com/CenterForMedicalGeneticsGhent/WisecondorX/archive/v{}.tar.gz'.format(dl_version),
license='Attribution-NonCommercial-ShareAlike CC BY-NC-SA',
packages=find_packages('.'),
python_requires='==2.7',
include_package_data=True,
zip_safe=False,
install_requires=[
'scipy',
'scikit-learn',
'pysam',
'numpy'
],
entry_points={
'console_scripts': ['WisecondorX = wisecondorX.main:main']
},
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Science/Research',
'Natural Language :: English',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX',
'Operating System :: Unix',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Bio-Informatics'
]
)