-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (28 loc) · 853 Bytes
/
pyproject.toml
File metadata and controls
32 lines (28 loc) · 853 Bytes
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
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "aas-core-meta"
version = "2022.6.21"
description = "Provide meta-models for Asset Administration Shell information model."
readme = "README.rst"
license = {text = "MIT"}
authors = [
{ name = "Marko Ristin", email = "rist@zhaw.ch" }
]
keywords = ["asset administration shell", "design-by-contract", "meta-model"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.9",
]
dependencies = [
"icontract>=2.5.1,<3",
]
requires-python = ">=3.10"
[project.urls]
Homepage = "https://github.com/aas-core-works/aas-core-meta"
[tool.setuptools.packages.find]
exclude = ["dev"]
[tool.setuptools.package-data]
"aas_core_meta" = ["py.typed"]