-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
62 lines (57 loc) · 1.5 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[project]
name = "bim2rdf"
version = "0.1.0"
description = "Convert BIM data to RDF models"
authors = [
{ name = "Majid alDosari", email = "[email protected]" }
]
readme = "README.md"
requires-python = "==3.11.9"
dependencies = [
#"bim2rdf",
'dynaconf', # 'python-dotenv', vendored in dyanconf https://www.dynaconf.com/#vendored
# 'local' ones
"bim2rdf_rules",
"bim2rdf_mapping",
#"ontologies", # ? need this? or just create a ttl loader rule
"bim2rdf_speckle",
"rdflib", # just to make a nice looking ttl bc pyoxigraph doesn't. otherwise dont want to use!
]
[project.optional-dependencies]
spklauto = ["bim2rdf_spklauto"]
cli = ["fire", "pyyaml"]
[project.scripts]
bim2rdf = "bim2rdf.cli:run"
[dependency-groups]
dev = [
#'aider-install', can uvx aider-install
"ipython", "ipdb",
"icecream",
"marimo",
"cachier",
# automation
"project",
"bim2rdf[spklauto, cli]", #nice
# testing
"pytest", "pytest-regressions",
"rdflib", # just to check if the same
]
[tool.uv.sources]
# just listing the dirs alphabetically
bim2rdf-mapping = { workspace=true}
#ontologies = { path = 'ontologies' , editable = true}
project = { workspace=true}
bim2rdf-rules = { workspace=true}
bim2rdf-speckle = { workspace=true}
bim2rdf-spklauto = { workspace=true}
[tool.uv.workspace]
members = [ # same order as above
"mapping",
"project",
"rules",
"speckle",
"spklauto",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"