-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
42 lines (39 loc) · 1009 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
32
33
34
35
36
37
38
39
40
41
42
[project]
name = "rdf-engine"
dynamic = ['version' ]
description = "A rules engine for RDF data"
authors = [
{"name" = "Majid alDosari", email="[email protected]"},
{"name" = "Majid alDosari", email="[email protected]"},
]
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"pyoxigraph",
"rdflib", # just for 'deanon', otherwise dont want this
]
[project.optional-dependencies]
cli = ['pyyaml']
[dependency-groups]
dev = [
'ipython', 'ipdb',
'marimo',
'pytest',
'pre-commit',
'fire',
# https://github.com/astral-sh/uv/issues/9011#issuecomment-2568139247
"rdf-engine[cli]"
]
[project.scripts]
rdf-engine = "rdf_engine:cli"
[build-system]
# > uv build
# > uvx hatchling version major
# uv backend 'std'
# https://github.com/astral-sh/uv/issues/3957
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.version]
path = "src/rdf_engine/__init__.py"
[tool.hatch.build.targets.sdist]
include = ['src/**/*.py']