-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (27 loc) · 986 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
from setuptools import setup
with open("README.md", "r", encoding="utf-8") as f:
long_description = f.read()
setup(
name="micado-parser",
version="0.12.3",
author="Jay DesLauriers",
author_email="[email protected]",
description="Parse MiCADO ADTs for the MiCADO Submitter",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/micado-scale/micado-parser",
project_urls={
"Bug Tracker": "https://github.com/micado-scale/micado-parser/issues",
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
packages=["micadoparser", "micadoparser.utils"],
install_requires=["ruamel.yaml", "tosca-parser", "click"],
python_requires=">=3.8",
entry_points={
"console_scripts": ["micadoparser=micadoparser.cli:main"],
},
)