-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (38 loc) · 903 Bytes
/
Copy pathpyproject.toml
File metadata and controls
42 lines (38 loc) · 903 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "geoblender"
version = "0.1.0"
description = "Reconstruct a real-world area from OSM/Overpass as a Blender-ready 3D scene."
readme = "README.md"
requires-python = ">=3.9"
license = { text = "MIT" }
dependencies = ["requests"]
[project.optional-dependencies]
yaml = ["PyYAML"]
[project.scripts]
place2blender = "place_to_3d:main"
maps-to-3d = "blocks_pipeline:main"
[tool.setuptools]
package-dir = { "" = "scripts" }
py-modules = [
"place_to_3d",
"blocks_pipeline",
"blocks_build",
"blocks_eval",
"architectural_detail",
"hospital_detail",
"highway_detail",
"stadium_detail",
"urban_detail",
"blender_build",
"world_scene",
"citycamera",
"citylandmarks",
"cityprofiles",
"cityroofs",
"cityconfig",
"citylog",
"citycache",
]