-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
84 lines (70 loc) · 1.69 KB
/
pyproject.toml
File metadata and controls
84 lines (70 loc) · 1.69 KB
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
[tool.poetry]
name = "terraforge-studio"
version = "1.0.0"
description = "Professional cross-platform 3D terrain and real-world map generator for Unreal Engine 5, Unity, and other game engines"
authors = ["TerraForge Team <contact@terraforge.dev>"]
readme = "README.md"
license = "MIT"
packages = [{include = "realworldmapgen"}]
[tool.poetry.dependencies]
python = "^3.13"
# Web Framework
fastapi = "^0.115.0"
uvicorn = {extras = ["standard"], version = "^0.32.0"}
pydantic = "^2.9.0"
pydantic-settings = "^2.6.0"
python-multipart = "^0.0.17"
aiofiles = "^24.1.0"
httpx = "^0.27.0"
# Scientific Computing
numpy = "^2.1.0"
scipy = "^1.14.0"
pillow = "^11.0.0"
# Geospatial Core
shapely = "^2.0.6"
pyproj = "^3.7.0"
networkx = "^3.4.0"
rasterio = "^1.3.10"
geopandas = "^1.0.1"
# OpenStreetMap
osmnx = "^2.0.0"
requests = "^2.32.0"
# New Geospatial Data Sources
sentinelhub = "^3.10.0"
earthengine-api = "^0.1.387"
azure-maps-geolocation = "^1.0.0b1"
azure-maps-render = "^1.0.0b1"
# 3D Export Formats
pygltflib = "^1.16.1"
trimesh = "^4.0.5"
pywavefront = "^1.3.3"
# AI (Optional)
ollama = "^0.4.0"
# Utilities
python-dotenv = "^1.0.0"
tqdm = "^4.66.0"
cryptography = "^41.0.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.0"
pytest-asyncio = "^0.24.0"
black = "^24.10.0"
ruff = "^0.7.0"
mypy = "^1.13.0"
pre-commit = "^4.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 100
target-version = ["py313"]
[tool.ruff]
line-length = 100
target-version = "py313"
[tool.mypy]
python_version = "3.13"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = false
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]