-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
46 lines (42 loc) · 1.07 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
[project]
name = "json2rdf"
dynamic = ["version"]
description = "Translate JSON to RDF"
readme = "README.md"
authors = [
{ name = "Majid alDosari", email = "[email protected]" },
{ name = "Majid alDosari", email = "[email protected]" }
]
requires-python = ">=3.11"
dependencies = [
"boltons", # TODO: vendor just the specific function used
"numpy", # array encoding. could be optional TODO
]
[project.optional-dependencies]
cli = ["fire"]
[dependency-groups]
dev = [
'ipython', 'ipdb',
'rdflib', # shouldn't need this as a 'run' dep (above)
'pytest',
'pytest-regressions',
'pre-commit',
'fire'
]
[project.urls]
Repository = "https://github.com/pnnl/json2rdf.git"
[project.scripts]
json2rdf = "json2rdf: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/json2rdf/__init__.py"
[tool.hatch.build.targets.sdist]
include = ['src/**/*.py']
# publish
# > uv publish