forked from PMCC-BioinformaticsCore/janis-unix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
51 lines (46 loc) · 1.54 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
# Version information is found in the __init__ file of `janiscore/`
DESCRIPTION = "Unix tools and data types for Janis"
######## SHOULDN'T NEED EDITS BELOW THIS LINE ########
with open("./README.md") as readme:
long_description = readme.read()
vsn = {}
with open("./janis_unix/__meta__.py") as fp:
exec(fp.read(), vsn)
__version__ = vsn["__version__"]
setup(
name="janis-pipelines.unix",
version=__version__,
description=DESCRIPTION,
url="",
author="Michael Franklin, Evan Thomas, Mohammad Bhuyan",
author_email="michael.franklin@petermac.org",
license="GNU",
keywords=["pipelines", "bioinformatics", "workflows"],
packages=["janis_unix"]
+ ["janis_unix." + p for p in sorted(find_packages("./janis_unix"))],
install_requires=["janis-pipelines.core >= 0.10.7"],
extras_require={
"ci": [
"keyring==21.4.0",
"setuptools",
"wheel",
"twine",
],
},
entry_points={
"janis.extension": ["unix=janis_unix"],
"janis.tools": ["unix=janis_unix.tools"],
"janis.types": ["unix=janis_unix.data_types"],
},
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",
"Topic :: Scientific/Engineering :: Bio-Informatics",
],
)