-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
82 lines (74 loc) · 2.42 KB
/
pyproject.toml
File metadata and controls
82 lines (74 loc) · 2.42 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
# see https://flit.pypa.io/en/latest/pyproject_toml.html
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "dynamic_competence_map"
description = "dcm: nicegui based visualization of dynamic competence map"
keywords = [ "nicegui", "skills", "competence"]
home-page = "https://github.com/WolfgangFahl/dcm"
authors = [
{name = "Wolfgang Fahl", email = "wf@WolfgangFahl.com"}
]
maintainers = [
{ name = "Wolfgang Fahl", email = "wf@WolfgangFahl.com" },
]
readme = "README.md"
license = {text = "Apache-2.0"}
dependencies = [
# https://pypi.org/project/pybasemkit/
# https://github.com/WolfgangFahl/pybasemkit
# Python base module kit: YAML/JSON I/O, structured logging, CLI tooling, shell execution, and remote pydevd debug support.
"pybasemkit>=0.0.3",
# https://github.com/WolfgangFahl/nicegui_widgets
"ngwidgets>=0.27.1",
# https://pypi.org/project/dataclasses-json/
"dataclasses-json>=0.6.1",
# https://github.com/trentm/python-markdown2
"markdown2>=2.4.7,<2.4.11",
# https://github.com/un33k/python-slugify
# https://pypi.org/project/python-slugify/
"python-slugify>=8.0.1",
# https://pypi.org/project/linkml-runtime/
"linkml-runtime",
# https://pypi.org/project/linkml/,
"linkml",
# https://pypi.org/project/rdflib/
"rdflib",
# https://pypi.org/project/colour/
"colour>=0.1.5"
]
requires-python = ">=3.10"
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
"Topic :: Software Development :: User Interfaces",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License"
]
dynamic = ["version"]
[tool.hatch.version]
path = "dcm/__init__.py"
[project.urls]
Home = "https://github.com/WolfgangFahl/dcm"
Documentation = "https://wiki.bitplan.com/index.php/dcm"
Source = "https://github.com/WolfgangFahl/dcm"
[project.optional-dependencies]
test = [
"green",
]
[tool.hatch.build.targets.wheel]
only-include = ["dcm","dcm_examples"]
[tool.hatch.build.targets.wheel.sources]
"dcm" = "dcm"
"dcm_examples" = "dcm_examples"
[project.scripts]
dcm = "dcm.dcm_cmd:main"