-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
70 lines (65 loc) · 2.43 KB
/
Copy pathsetup.py
File metadata and controls
70 lines (65 loc) · 2.43 KB
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
from os import path
from setuptools import find_packages, setup
here = path.abspath(path.dirname(__file__))
with open(path.join(here, "README.md")) as f:
long_description = f.read()
# Get package metadata from 'bamliquidator_batch/__about__.py' file
about = {}
with open(path.join(here, "pipeline_tools", "__about__.py")) as f:
exec(f.read(), about)
setup(
name=about["__title__"],
version=about["__version__"],
description=about["__summary__"],
long_description=long_description,
url=about["__url__"],
maintainer=about["__maintainer__"],
maintainer_email=about["__email__"],
license=about["__license__"],
packages=find_packages(exclude=["tests", "tests.*", "*.tests", "*.tests.*"]),
install_requires=["numpy", "scipy"],
scripts=[
"pipeline_tools/scripts/enhancerPromoter_waterfall.R",
"pipeline_tools/scripts/bamPlot_turbo.R",
"pipeline_tools/scripts/ROSE2_callSuper.R",
"pipeline_tools/scripts/ROSE2_stitchOpt.R",
"pipeline_tools/scripts/clusterEnhancer.R",
"pipeline_tools/scripts/dynamicEnhancer_plot.R",
"pipeline_tools/scripts/dynamicEnhancer_rank.R",
],
entry_points={
"console_scripts": [
"enhancerPromoter=pipeline_tools.tools.enhancerPromoter:main",
"out_degree_delta=pipeline_tools.tools.out_degree_delta:main",
"bamPlot_turbo=pipeline_tools.tools.bamPlot_turbo:main",
"ROSE2_geneMapper=pipeline_tools.tools.ROSE2_geneMapper:main",
"ROSE2=pipeline_tools.tools.ROSE2_main:main",
"ROSE2_META=pipeline_tools.tools.ROSE2_META:main",
"clusterEnhancer=pipeline_tools.tools.clusterEnhancer:main",
"dynamicEnhancer=pipeline_tools.tools.dynamicEnhancer:main",
]
},
package_data={"pipeline_tools": ["annotation/*"]},
include_package_data=True,
classifiers=[
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Operating System :: POSIX",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
],
keywords=[
"bioinformatics",
"pipeline",
"linlab",
"enhancerPromoter",
"out_degree_delta",
"bamPlot_turbo",
"ROSE2_geneMapper",
"ROSE2",
"ROSE2_META",
"clusterEnhancer",
"dynamicEnhancer",
],
)