From 53b3f22cbf8bc8b8db70c3fb0347e68969727c4d Mon Sep 17 00:00:00 2001 From: zrgt Date: Wed, 7 Aug 2024 13:44:15 +0200 Subject: [PATCH] Add metainfo in setup.py --- setup.py | 22 ++++++++++++++-------- 1 file changed, 14 insertions(+), 8 deletions(-) diff --git a/setup.py b/setup.py index 9711acd..c2f0d09 100644 --- a/setup.py +++ b/setup.py @@ -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="info@idtwin.org", - 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="i.garmaev@iat.rwth-aachen.de", + 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' )