-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
37 lines (31 loc) · 918 Bytes
/
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
import sys
if sys.version_info.major != 3 or sys.version_info.minor < 7:
print("Error: you must execute setup.py using Python 3.7 or later")
sys.exit(1)
from setuptools import find_packages, setup
from TrueConsense.version import __version__
with open("README.md", "rb") as readme:
DESCR = readme.read().decode()
setup(
name="TrueConsense",
version=__version__,
author="Florian Zwagemaker, Dennis Schmitz",
author_email="[email protected]",
license="AGPLv3",
packages=find_packages(),
install_requires=[
"pysam<0.16",
"pandas>=1.2.3",
"gffpandas>=1.2.0",
"tqdm>=4.59.0",
"biopython>=1.78",
],
entry_points={
"console_scripts": [
"trueconsense = TrueConsense.TrueConsense:main",
"TrueConsense = TrueConsense.TrueConsense:main",
]
},
keywords=[],
zip_safe=False,
)