-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
41 lines (36 loc) · 1011 Bytes
/
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
[project]
name = "drone-flightplan"
dynamic = ["version"]
description = "Generates an optimized flight plan for drones to conduct precise and efficient aerial mapping"
authors = [
{name = "Niraj Adhikari", email = "[email protected]"},
]
dependencies = [
"geojson>=3.0.0",
"shapely>=2.0.0",
"pyproj>=3.0.0",
]
requires-python = ">=3.10"
readme = "README.md"
license = {text = "AGPL-3.0-only"}
[project.urls]
homepage = "https://github.com/hotosm/drone-flightplan"
repository = "https://github.com/hotosm/drone-flightplan"
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pdm.version]
source = "file"
path = "./drone_flightplan/__version__.py"
[tool.pdm.build]
includes = ["drone_flightplan"]
source-includes = ["LICENSE.md", "README.md"]
[tool.commitizen]
name = "cz_conventional_commits"
version = "0.3.1"
version_files = [
"pyproject.toml:version",
"drone_flightplan/__version__.py",
]
changelog_file = "CHANGELOG.md"
update_changelog_on_bump = true