forked from eclipse-basyx/basyx-python-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·49 lines (46 loc) · 1.59 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#!/usr/bin/env python3
# Copyright (c) 2019-2021 the Eclipse BaSyx Authors
#
# This program and the accompanying materials are made available under the terms of the MIT License, available in
# the LICENSE file of this project.
#
# SPDX-License-Identifier: MIT
import setuptools
with open("README.md", "r", encoding='utf-8') as fh:
long_description = fh.read()
setuptools.setup(
name="basyx-python-sdk",
version="0.2.2",
author="The Eclipse BaSyx Authors",
description="The Eclipse BaSyx Python SDK, an implementation of the Asset Administration Shell for Industry 4.0 "
"systems",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/eclipse-basyx/basyx-python-sdk",
packages=setuptools.find_packages(exclude=["test", "test.*"]),
zip_safe=False,
package_data={
"basyx": ["py.typed"],
"basyx.aas.adapter.json": ["aasJSONSchema.json"],
"basyx.aas.adapter.xml": ["AAS.xsd", "AAS_ABAC.xsd", "IEC61360.xsd"],
"basyx.aas.examples.data": ["TestFile.pdf"],
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
],
entry_points={
'console_scripts': [
"aas-compliance-check = basyx.aas.compliance_tool.cli:main"
]
},
python_requires='>=3.7',
install_requires=[
'python-dateutil>=2.8,<3',
'lxml>=4.2,<5',
'urllib3>=1.26,<2.0',
'pyecma376-2>=0.2.4',
]
)