forked from EI-CoreBioinformatics/reat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
67 lines (65 loc) · 2.16 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
from setuptools import setup, Extension, find_packages
import numpy
from Cython.Build import cythonize
import glob
setup(
name='reat',
version='0.6.1',
packages=find_packages('.', exclude=["tests"]),
url='https://github.com/ei-corebioinformatics/reat',
classifiers=[
"Development Status :: 4 - Beta",
"Topic :: Scientific Engineering :: Bio/Informatics",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8"
],
license='MIT',
author='Luis Yanes',
author_email='[email protected]',
description='Robust Eukaryotic Annotation Toolkit',
zip_safe=False,
keywords="gene annotation WDL pipeline workflow cromwell transcriptome homology",
ext_modules=cythonize(
[
Extension("annotation.lib.cy_utils.contrast",
include_dirs=[numpy.get_include()],
sources=["annotation/lib/cy_utils/contrast.pyx"]),
],
compiler_directives={"language_level": "3"}
),
scripts=[
script for script in glob.glob("annotation/scripts/*")
],
install_requires=[
"biopython~=1.78",
"mikado~=2.3.0",
"pyfaidx~=0.5.8",
"jsonschema~=3.2.0",
"pyyaml~=5.4.1",
"parasail~=1.2.4",
'2passtools @ git+https://github.com/bartongroup/2passtools.git#d4378d0'
],
extras_require={
'docs': [
'sphinx',
'sphinx_rtd_theme',
]
},
package_data={
"validation": ["transcriptome.schema.json", "homology.schema.json"],
"annotation": ["transcriptome_module/*.wdl",
"transcriptome_module/*/**/*.wdl",
"transcriptome_module/*/**/**/*.wdl",
"homology_module/*.wdl",
"prediction_module/*"],
"annotation.lib.cy_utils": ["annotation/lib/cy_utils/contrast.pxd"]
},
entry_points={
"console_scripts": [
"reat=annotation.__main__:main"
]
}
)