-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (49 loc) · 1.26 KB
/
pyproject.toml
File metadata and controls
57 lines (49 loc) · 1.26 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
[build-system]
requires = ["setuptools>=74"]
build-backend = "setuptools.build_meta"
[project]
name = "georeel"
version = "1.5.0"
description = "Open-source desktop application that turns a GPX track and a set of geotagged photos into a cinematic fly-through video of the route rendered on 3D terrain with satellite imagery — a self-hosted alternative to services like Relive."
readme = "README.md"
requires-python = ">=3.14"
dependencies = [
"fastapi>=0.136.0",
"gpxpy>=1.6.2",
"httpx>=0.28.1",
"numpy>=2.4.4",
"pillow>=12.2.0",
"psutil>=7.2.2",
"pyside6>=6.11.0",
"python-multipart>=0.0.26",
"scipy>=1.17.1",
"srtm-py>=0.3.7",
"uvicorn[standard]>=0.44.0",
]
[dependency-groups]
dev = [
"basedpyright>=1.39.0",
"pyside6-stubs>=6.7.3.0",
"pytest>=9.0.3",
"pytest-cov>=7.1.0",
]
[project.scripts]
georeel = "georeel.main:main"
georeel-server = "georeel.server.main:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
georeel = ["assets/*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "--tb=short -q"
[tool.coverage.run]
source = ["src/georeel"]
branch = true
relative_files = true
[tool.coverage.report]
omit = [
"**/main.py",
"**/ui/**",
"**/blender_scripts/**"
]