-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
33 lines (28 loc) · 971 Bytes
/
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
from setuptools import setup
__version__ = "v0.3.1"
DESCRIPTION = (
"Contains classes and helpers to generate WDL without worrying about the syntax. "
"This is primarily intended for generating WDL from other in-memory representations of a workflow."
)
# ======== SHOULDN'T NEED EDITS BELOW THIS LINE ======== #
with open("./README.md") as readme:
long_description = readme.read()
setup(
name="illusional.wdlgen",
version=__version__,
description=DESCRIPTION,
url="https://github.com/PMCC-BioinformaticsCore/python-wdlgen",
author="Richard Lupat",
author_email="[email protected]",
license="GNU",
packages=["wdlgen"],
install_requires=[],
zip_safe=False,
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering",
],
)