Skip to content

Commit

Permalink
Add metainfo in setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
zrgt committed Aug 7, 2024
1 parent 77f1b25 commit 53b3f22
Showing 1 changed file with 14 additions and 8 deletions.
22 changes: 14 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,19 +21,25 @@
# prerequisite: setuptools
# http://pypi.python.org/pypi/setuptools

REQUIRES = ["urllib3 >= 1.15", "six >= 1.10", "certifi", "python-dateutil"]
REQUIRES = ["urllib3 >= 1.15", "six >= 1.10", "certifi", "python-dateutil", "basyx-python-sdk"]

setup(
name=NAME,
version=VERSION,
description="DotAAS Part 2 | HTTP/REST | Entire API Collection",
author_email="[email protected]",
url="",
keywords=["Swagger", "DotAAS Part 2 | HTTP/REST | Entire API Collection"],
description="Python Client for DotAAS Part 2 | HTTP/REST | Entire API Collection",
author_email="[email protected]",
url="https://github.com/rwth-iat/aas-python-http-client",
keywords=["Swagger", "DotAAS Part 2 | HTTP/REST | Entire API Collection", "AAS"],
install_requires=REQUIRES,
packages=find_packages(),
packages=find_packages(exclude=["test", "test.*"]),
include_package_data=True,
long_description="""\
All APIs of the Specification of the [Specification of the Asset Administration Shell: Part 2](http://industrialdigitaltwin.org/en/content-hub) in one collection. Please not that this API is not intended to generate productive code but only for overview purposes. Publisher: Industrial Digital Twin Association (IDTA) 2023\" # noqa: E501
"""
Python Client for all APIs of the Specification of the [Specification of the Asset Administration Shell: Part 2](http://industrialdigitaltwin.org/en/content-hub) in one collection. Please not that this API is not intended to generate productive code but only for overview purposes. Publisher: Industrial Digital Twin Association (IDTA) 2023\" # noqa: E501
""",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
],
python_requires='>=3.8'
)

0 comments on commit 53b3f22

Please sign in to comment.