-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
51 lines (47 loc) · 1.52 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
from setuptools import setup, find_packages
######## SHOULDN'T NEED EDITS BELOW THIS LINE ########
vsn = {}
with open("./janis_pipelines/__meta__.py") as fp:
exec(fp.read(), vsn)
version = vsn["__version__"]
description = vsn["description"]
with open("./README.md") as readme:
long_description = readme.read()
setup(
name="janis-pipelines.pipelines",
version=version,
description=description,
url="https://github.com/PMCC-BioinformaticsCore/janis-pipelines",
author="Michael Franklin",
author_email="[email protected]",
license="GNU",
packages=["janis_pipelines"]
+ ["janis_pipelines." + p for p in sorted(find_packages("./janis_pipelines"))],
entry_points={
"janis.extension": ["pipelines=janis_pipelines"],
"janis.tools": ["pipelines=janis_pipelines"],
"janis.pipelines": ["bioinformatics=janis_pipelines"],
},
install_requires=[
# "janis-pipelines.core>=0.10.0",
# "janis-pipelines.bioinformatics>=0.10.0",
"janis-pipelines.unix>=0.10.0",
],
extras_require={
"ci": [
"keyring==21.4.0",
"setuptools",
"wheel",
"twine",
],
},
zip_safe=False,
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
],
)