-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
55 lines (51 loc) · 1.87 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
#!/usr/bin/env python
from setuptools import setup, find_packages
import versioneer
NAME = "RNAmediator"
DESCRIPTION = "The RNA Interaction via secondary structure mediation (RNAmediator) tool suite analyses the change of RNA secondary structure upon binding other molecules."
# Set __version__ done by versioneer
# exec(open("NextSnakes/__init__.py").read())
setup(
name=NAME,
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
author="Joerg Fallmann",
author_email="[email protected]",
scripts=[
"RNAmediator/ConstraintPLFold.py",
"RNAmediator/ConstraintFold.py",
"RNAmediator/CollectConsResults.py",
"RNAmediator/CollectWindowResults.py",
"RNAmediator/GenerateBigWig.py",
],
packages=["RNAmediator.Tweaks", "RNAmediator", "RNAmediator.vis"],
package_data={"RNAmediator.vis": ["assets/*", "templates/*"]},
entry_points={
"console_scripts": [
"RNAmediator_fold = RNAmediator.ConstraintFold:main",
"RNAmediator_plfold = RNAmediator.ConstraintPLFold:main",
"RNAmediator_collect_fold = RNAmediator.CollectWindowResults:main",
"RNAmediator_collect_plfold = RNAmediator.CollectConsResults:main",
"RNAmediator_visualize = RNAmediator.visualize:main",
"RNAmediator_generate_bw = RNAmediator.GenerateBigWig:main",
]
},
include_package_data=True,
install_requires=[
"numpy",
"biopython",
"natsort",
"pandas",
"pybigwig",
"dash",
"dash-bootstrap-components",
],
setup_requires=["pytest-runner"],
tests_require=["pytest"],
license="LICENSE",
url="https://github.com/jfallmann/RNAmediator",
description=DESCRIPTION,
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
zip_safe=False,
)