-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
70 lines (63 loc) · 1.91 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
65
66
67
68
69
70
#!/usr/bin/env python
import setuptools
import os
import sys
if sys.version_info < (3, 2):
sys.exit('Minimum supported Python version is 3.2')
here = os.path.abspath(os.path.dirname(__file__))
# Get the long description from the README file
with open(os.path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
# Get the current version
exec(open("rnftools/version.py").read())
setuptools.setup(
name='RNFtools',
version=VERSION,
description='RNF framework for NGS: simulation of reads, evaluation of mappers, conversion of RNF-compliant data.',
long_description=long_description,
url='http://karel-brinda.github.io/rnftools/',
author='Karel Brinda',
author_email='karel.brinda@univ-mlv.fr',
license='MIT',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3 :: Only',
'Operating System :: Unix',
'Topic :: Scientific/Engineering :: Bio-Informatics',
],
keywords='Bioinformatics, Computational Biology, Next-Generation Sequencing, Read Simulation, Mappers Evaluation',
packages=[
'rnftools',
'rnftools.mishmash',
'rnftools.lavender',
'rnftools.rnfformat',
'rnftools.utils',
],
install_requires=[
'argparse',
'beautifulsoup4',
'pyfaidx',
'pysam',
'snakemake',
'svg42pdf>=0.1.1',
#'termcolor',
],
package_data={
'rnftools': [
'*.snake',
],
'rnftools.mishmash': [
'*.snake',
],
'rnftools.lavender': [
'*.snake',
],
},
entry_points={'console_scripts': [
'rnftools = rnftools.scripts:rnftools_script',
]},
)