Skip to content

Commit 2378ec1

Browse files
committed
Add entrypoints for janis.extras + janis.core bundling
1 parent 2aeab5d commit 2378ec1

File tree

2 files changed

+13
-8
lines changed

2 files changed

+13
-8
lines changed

janis_bioinformatics/__meta__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
__version__ = "v0.0.9"
1+
__version__ = "v0.4.0"
22
description = "Bioinformatics tools for Janis; the Pipeline creation helper"

setup.py

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,20 @@
1919
author="Michael Franklin, Evan Thomas, Mohammad Bhuyan",
2020
author_email="[email protected]",
2121
license="GNU",
22-
packages=["janis_bioinformatics"] + ["janis_bioinformatics." + p for p in sorted(find_packages('./janis_bioinformatics'))],
23-
install_requires=[],
22+
packages=["janis_bioinformatics"]
23+
+ [
24+
"janis_bioinformatics." + p
25+
for p in sorted(find_packages("./janis_bioinformatics"))
26+
],
27+
entry_points={"janis.extension": ["bioinformatics=janis_bioinformatics"]},
28+
install_requires=["janis-pipelines.core"],
2429
zip_safe=False,
2530
long_description=long_description,
2631
long_description_content_type="text/markdown",
2732
classifiers=[
28-
'Development Status :: 2 - Pre-Alpha',
29-
'Intended Audience :: Developers',
30-
'Intended Audience :: Science/Research',
31-
'Topic :: Scientific/Engineering :: Bio-Informatics'
32-
]
33+
"Development Status :: 2 - Pre-Alpha",
34+
"Intended Audience :: Developers",
35+
"Intended Audience :: Science/Research",
36+
"Topic :: Scientific/Engineering :: Bio-Informatics",
37+
],
3338
)

0 commit comments

Comments
 (0)