forked from guillermo-carrasco/TACA
-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.py
50 lines (44 loc) · 1.6 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
import glob
from setuptools import find_packages, setup
from taca import __version__
try:
with open("requirements.txt") as f:
install_requires = [x.strip() for x in f.readlines()]
except OSError:
install_requires = []
try:
with open("dependency_links.txt") as f:
dependency_links = [x.strip() for x in f.readlines()]
except OSError:
dependency_links = []
setup(
name="taca",
version=__version__,
description="Tool for the Automation of Cleanup and Analyses",
long_description="This package contains a set of functionalities that are "
"useful in the day-to-day tasks of bioinformatitians in "
"National Genomics Infrastructure in Stockholm, Sweden.",
keywords="bioinformatics",
author="NGI-stockholm",
author_email="[email protected]",
python_requires=">=3.11.5",
url="http://taca.readthedocs.org/en/latest/",
license="MIT",
packages=find_packages(exclude=["ez_setup", "examples", "tests"]),
scripts=glob.glob("scripts/*.py"),
include_package_data=True,
zip_safe=False,
entry_points={
"console_scripts": ["taca = taca.cli:cli"],
"taca.subcommands": [
"cleanup = taca.cleanup.cli:cleanup",
"analysis = taca.analysis.cli:analysis",
"bioinfo_deliveries = taca.utils.cli:bioinfo_deliveries",
"server_status = taca.server_status.cli:server_status",
"backup = taca.backup.cli:backup",
"create_env = taca.testing.cli:uppmax_env",
],
},
install_requires=install_requires,
dependency_links=dependency_links,
)