-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
31 lines (27 loc) · 852 Bytes
/
pyproject.toml
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
[build-system]
requires = ["lxml==4.9.1", "setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "yakindu-merge-py"
version = "0.0.2"
description = "Divide and merge statecharts for easy collaboration"
readme = "README.md"
authors = [{ name = "Rein Spanjer", email = "contact@reinspanjer.nl" }]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
keywords = ["yakindu", "tool", "merge"]
dependencies = [
"lxml==4.9.1",
'tomli; python_version < "3.11"',
]
requires-python = ">=3.6"
[project.optional-dependencies]
dev = ["black", "pip-tools", "pytest"]
[project.urls]
Homepage = "https://github.com/Spanjer1/yakindu-merge-py"
[project.scripts]
yakmerge = "yakmerge.__main__:main"