|
21 | 21 | # prerequisite: setuptools
|
22 | 22 | # http://pypi.python.org/pypi/setuptools
|
23 | 23 |
|
24 |
| -REQUIRES = ["urllib3 >= 1.15", "six >= 1.10", "certifi", "python-dateutil"] |
| 24 | +REQUIRES = ["urllib3 >= 1.15", "six >= 1.10", "certifi", "python-dateutil", "basyx-python-sdk"] |
25 | 25 |
|
26 | 26 | setup(
|
27 | 27 | name=NAME,
|
28 | 28 | version=VERSION,
|
29 |
| - description="DotAAS Part 2 | HTTP/REST | Entire API Collection", |
30 |
| - author_email="info@idtwin.org", |
31 |
| - url="", |
32 |
| - keywords=["Swagger", "DotAAS Part 2 | HTTP/REST | Entire API Collection"], |
| 29 | + description="Python Client for DotAAS Part 2 | HTTP/REST | Entire API Collection", |
| 30 | + author_email="i.garmaev@iat.rwth-aachen.de", |
| 31 | + url="https://github.com/rwth-iat/aas-python-http-client", |
| 32 | + keywords=["Swagger", "DotAAS Part 2 | HTTP/REST | Entire API Collection", "AAS"], |
33 | 33 | install_requires=REQUIRES,
|
34 |
| - packages=find_packages(), |
| 34 | + packages=find_packages(exclude=["test", "test.*"]), |
35 | 35 | include_package_data=True,
|
36 | 36 | long_description="""\
|
37 |
| - 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 |
38 |
| - """ |
| 37 | + 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 |
| 38 | + """, |
| 39 | + classifiers=[ |
| 40 | + "Programming Language :: Python :: 3", |
| 41 | + "License :: OSI Approved :: MIT License", |
| 42 | + "Operating System :: OS Independent" |
| 43 | + ], |
| 44 | + python_requires='>=3.8' |
39 | 45 | )
|
0 commit comments