-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (39 loc) · 868 Bytes
/
pyproject.toml
File metadata and controls
44 lines (39 loc) · 868 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "uri-resolver"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"httpx>=0.28.1",
"pydantic>=2.12.5",
"pydantic-settings>=2.6.0",
"pygments>=2.20.0",
"rdflib>=7.5.0",
"redis>=7.1.0",
"requests>=2.33.0",
]
[dependency-groups]
dev = [
"jupyterlab>=4.5.7",
"jupyter-server>=2.18.0",
"mistune>=3.2.1",
"black>=26.3.1",
"mypy>=1.19.1",
"pytest>=9.0.3",
"ruff>=0.14.14",
"pynvim",
"pip-audit>=2.10.0",
"nbconvert>=7.17.1",
"tornado>=6.5.5",
"pip>=26.1",
]
[project.scripts]
uri-resolver = "uri_resolver.main:main"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]