-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
59 lines (51 loc) · 1.52 KB
/
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
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "online-diagrams"
description = "nicegui based online diagrams rendering tool for e.g. plantuml and graphviz"
keywords = ["nicegui", "plantuml", "graphviz"]
authors = [
{name = "Wolfgang Fahl", email = "[email protected]"}
]
maintainers = [
{name = "Wolfgang Fahl", email = "[email protected]"},
]
readme = "README.md"
license= "Apache-2.0"
dependencies = [
# nicegui widgets
"ngwidgets>=0.11.2",
]
requires-python = ">=3.9"
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"License :: OSI Approved :: Apache Software License"
]
dynamic = ["version"]
[tool.hatch.version]
path = "dgs/__init__.py"
[project.urls]
Home = "https://github.com/BITPlan/diagrams"
Documentation = "http://wiki.bitplan.com/index.php/Diagrams"
Source = "https://github.com/BITPlan/diagrams"
[project.optional-dependencies]
test = [
"green",
]
[tool.hatch.build.targets.wheel]
only-include = ["dgs","diagrams_examples"]
[tool.hatch.build.targets.wheel.sources]
"dgs" = "dgs"
"diagrams_examples" = "diagrams_examples"
[project.scripts]
diagrams= "dgs.diagrams_cmd:main"