-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (30 loc) · 988 Bytes
/
setup.py
File metadata and controls
35 lines (30 loc) · 988 Bytes
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
from setuptools import setup
__version__ = "v0.2.10"
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/illusional/python-wdlgen",
author="Michael Franklin",
author_email="michael.franklin@petermac.org",
license="GNU",
packages=["wdlgen"],
install_requires=[
'miniwdl'
],
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",
],
)