-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (29 loc) · 961 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
from os import path
from setuptools import setup, find_packages
local = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(local, "README.md"), encoding="utf-8") as f:
long_description = f.read()
setup(
name="miniwdl_viz",
version="0.0.1",
description="Tools to translate a WDL file into a mermaid graph",
long_description=long_description,
long_description_content_type="text/markdown",
author="Chan Zuckerberg Initiative",
author_email="[email protected]",
py_modules=["miniwdl_viz"],
python_requires=">=3.6",
install_requires=[
"requests",
"pillow",
"matplotlib",
"miniwdl",
],
entry_points={
"console_scripts": ["miniwdl_parser = miniwdl_viz.miniwdl_parser:main",
"wdl_to_mermaid = miniwdl_viz.mermaid_wdl:main"
],
},
packages=["miniwdl_viz"],
)