forked from aas-core-works/aas-core-codegen
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (40 loc) · 1.33 KB
/
Copy pathpyproject.toml
File metadata and controls
45 lines (40 loc) · 1.33 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
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "aas-core-codegen"
version = "0.0.16"
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.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
requires-python = ">=3.9"
dependencies = [
"asttokens>=2.0.8,<3",
"icontract>=2.5.2,<3",
"sortedcontainers>=2.4.0,<3",
"docutils==0.20.1",
"more-itertools>=8,<9",
"greenery==4.1.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]
exclude = ["dev"]
[tool.setuptools.package-data]
aas_core_codegen = ["py.typed"]