-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
51 lines (47 loc) · 1.58 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_templates/__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.templates",
version=version,
description=description,
url="https://github.com/PMCC-BioinformaticsCore/janis-templates",
author="Michael Franklin",
author_email="[email protected]",
license="GNU",
packages=["janis_templates"]
+ ["janis_templates." + p for p in sorted(find_packages("./janis_templates"))],
entry_points={
"janis.extension": ["templates=janis_templates"],
"janis.templates": [
"pmac=janis_templates.petermac:PeterMacTemplate",
"spartan=janis_templates.spartan:SpartanTemplate",
"wehi=janis_templates.wehi:WEHITemplate",
"pawsey=janis_templates.pawsey:PawseyTemplate",
],
},
install_requires=["janis-pipelines.core >= 0.10.7"],
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",
],
)