-
Notifications
You must be signed in to change notification settings - Fork 74
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (54 loc) · 1.5 KB
/
pyproject.toml
File metadata and controls
63 lines (54 loc) · 1.5 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
[project.urls]
Homepage = "https://github.com/RDFLib/pyLODE"
Documentation = "https://github.com/RDFLib/pyLODE"
Source = "https://github.com/RDFLib/pyLODE"
Changelog = "https://github.com/RDFLib/pyLODE/releases"
[project]
name = "pylode"
version = "3.4.2a"
description = "An OWL ontology documentation tool using Python, based on LODE."
authors = [{ name = "Nicholas Car", email = "nick@kurrawong.ai" }]
requires-python = ">=3.9,<4"
readme = "README.md"
license = "BSD-3-Clause"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
dependencies = [
"rdflib>=7.5.0,<8.0.0",
"Markdown>=3.3.7,<4",
"dominate>=2.6.0,<3",
"html5lib>=1.1,<2",
"httpx>=0.25.0,<1.0.0",
"tqdm>=4.67.3",
]
[project.scripts]
pylode = "pylode.cli:main"
[project.optional-dependencies]
server = [
"bs4>=0.0.2",
"falcon>=4.2.0",
"validators>=0.35.0",
]
[dependency-groups]
dev = [
"pytest>=7.2.0,<8",
"ruff>=0.9.0",
"pyinstaller>=6.0,<7 ; python_full_version >= '3.9' and python_full_version < '3.11'",
]
[tool.uv]
required-version = ">=0.7.9"
default-groups = "all"
[tool.uv.build-backend]
module-root = ""
[build-system]
requires = ["uv_build>=0.9.1,<0.10.0"]
build-backend = "uv_build"
[tool.ruff.lint]
extend-select = ["I"]