-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (26 loc) · 957 Bytes
/
pyproject.toml
File metadata and controls
30 lines (26 loc) · 957 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
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "mi-mdb"
version = "0.1.0"
description = "Shlaer-Mellor Executable UML Model Debugger"
readme = "README.md"
authors = [{ name = "Leon Starr", email = "leon_starr@modelint.com" }]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
keywords = ["shlaer-mellor", "metamodel", "executable uml", "mbse", "xuml", "xtuml", "model debugger", "platform independent"]
dependencies = ["mi-mx", "mi-pyral", "PyYAML"]
requires-python = ">=3.11"
[project.optional-dependencies]
build = ["build", "twine"]
dev = ["bump2version", "pytest"]
[project.scripts]
mdb = "mdb.__main__:main"
[project.urls]
repository = "https://github.com/modelint/model-debugger"
documentation = "https://github.com/modelint/model-debugger/wiki"