-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
14 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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' | ||
) |