-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
106 lines (88 loc) · 3.12 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
#! /usr/bin/env python
import os
import sys
from setuptools import setup
PACKAGE = "pipestat"
# Additional keyword arguments for setup().
extra = {}
# Ordinary dependencies
DEPENDENCIES = []
with open("requirements/requirements-all.txt", "r") as reqs_file:
for line in reqs_file:
if not line.strip():
continue
# DEPENDENCIES.append(line.split("=")[0].rstrip("<>"))
DEPENDENCIES.append(line)
extra["install_requires"] = DEPENDENCIES
# Optional dependencies
# Extras requires a dictionary and not a list?
OPT_DEPENDENCIES = {}
with open("requirements/requirements-db-backend.txt", "r") as reqs_file:
lines = []
for line in reqs_file:
if not line.strip():
continue
# OPT_DEPENDENCIES.update({str(line.strip()):line.strip()})
lines.append(line.strip())
OPT_DEPENDENCIES.update({"dbbackend": lines})
with open("requirements/requirements-pipestatreader.txt", "r") as reqs_file:
lines = []
for line in reqs_file:
if not line.strip():
continue
# OPT_DEPENDENCIES.update({str(line.strip()):line.strip()})
lines.append(line.strip())
OPT_DEPENDENCIES.update({"pipestatreader": lines})
extra["extras_require"] = OPT_DEPENDENCIES
# Additional files to include with package
def get_static(name, condition=None):
static = [
os.path.join(name, f)
for f in os.listdir(os.path.join(os.path.dirname(os.path.realpath(__file__)), name))
]
if condition is None:
return static
else:
return [i for i in filter(lambda x: eval(condition), static)]
# scripts to be added to the $PATH
# scripts = get_static("scripts", condition="'.' in x")
# scripts removed (TO remove this)
scripts = None
with open(PACKAGE + "/_version.py", "r") as versionfile:
version = versionfile.readline().split()[-1].strip("\"'\n")
# Handle the pypi README formatting.
try:
import pypandoc
long_description = pypandoc.convert_file("README.md", "rst")
except (IOError, ImportError, OSError):
long_description = open("README.md").read()
setup(
name=PACKAGE,
packages=[PACKAGE],
version=version,
description="A pipeline results reporter",
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Bio-Informatics",
],
keywords="project, metadata, bioinformatics, sequencing, ngs, workflow",
url="https://github.com/pepkit/" + PACKAGE,
author="Michal Stolarczyk, Nathan Sheffield",
license="BSD2",
entry_points={
"console_scripts": ["pipestat = pipestat.__main__:main"],
},
scripts=scripts,
include_package_data=True,
test_suite="tests",
tests_require=(["mock", "pytest"]),
setup_requires=(["pytest-runner"] if {"test", "pytest", "ptr"} & set(sys.argv) else []),
**extra,
)