-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (55 loc) · 1.71 KB
/
Copy pathpyproject.toml
File metadata and controls
60 lines (55 loc) · 1.71 KB
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
50
51
52
53
54
55
56
57
58
59
60
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "aas-core-codegen"
# NOTE (mristin):
# Do not forget to update the CHANGELOG.rst and __init__.py!
version = "0.0.25"
description = "Generate implementations and schemas based on an AAS meta-model."
readme = "README.rst"
authors = [
{name = "Marko Ristin", email = "marko@ristin.ch"},
{name = "Nico Braunisch", email = "nico.braunisch@tu-dresden.de"}
]
license = {text = "MIT"}
keywords = ["asset administration shell", "code generation", "industry 4.0", "industrie 4.0", "i4.0"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
requires-python = ">=3.10"
dependencies = [
"asttokens>=2.0.8,<3",
# NOTE (mristin):
# We need icontract >=2.7.3 since we want to support pickle.
"icontract>=2.7.3,<3",
"sortedcontainers>=2.4.0,<3",
"docutils==0.22.3",
"more-itertools==10.8.0",
"greenery==4.1.0",
"typing_extensions>=4.0"
]
[project.urls]
Homepage = "https://github.com/aas-core-works/aas-core-codegen"
[project.scripts]
aas-core-codegen = "aas_core_codegen.main:entry_point"
aas-core-codegen-smoke = "aas_core_codegen.smoke.main:entry_point"
[tool.setuptools.packages.find]
include = [
"aas_core_codegen",
"aas_core_codegen.*"
]
# NOTE (mristin):
# The ``exclude`` here refers to the module names, not filesystem paths!
exclude = [
"continuous_integration",
"dev_scripts",
"integration_tests",
"tests"
]
[tool.setuptools.package-data]
aas_core_codegen = ["py.typed"]