-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
54 lines (50 loc) · 1.21 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
[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
"rules",
"mapping",
#"ontologies", # ? need this? or just create a ttl loader rule
"speckle",
]
[project.optional-dependencies]
spklauto = ["spklauto"]
cli = ["fire"]
[dependency-groups]
dev = [
# tools
#'aider-install', can uv pip install aider-install
"ipython", "ipdb",
"icecream",
# automation
"project",
"bim2rdf[spklauto, cli]",#nice
]
[tool.uv.sources]
# just listing the dirs alphabetically
mapping = { workspace=true}
#ontologies = { path = 'ontologies' , editable = true}
project = { workspace=true}
rules = { workspace=true}
speckle = { workspace=true}
spklauto = { workspace=true}
[tool.uv.workspace]
members = [ # same order as above
"mapping",
"project",
"rules",
"speckle",
"spklauto",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"