-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
44 lines (36 loc) · 1017 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
42
43
44
[tool.poetry]
name = "map-engraver"
version = "0.1.0"
description = "Tool for creating vector maps in the style of engraved maps"
authors = ["Leif Gehrmann <[email protected]>"]
license = "LGPL-3.0-only"
[tool.poetry.dependencies]
python = "^3.9"
cairocffi = "^1.7.1"
Shapely = "^2.0.1"
CairoSVG = "^2.7.0"
pyproj = "^3.6.1"
Pillow = "^10.3.0"
pangocffi = "^0.13.0"
pangocairocffi = "^0.7.0"
[tool.poetry.group.gdal]
optional = true
# We need to lock ourselves to 3.4.3 as that is the version that is supported
# by GitHub Action Ubuntu environments. See .github/workflows/build.yml
[tool.poetry.group.gdal.dependencies]
gdal = "3.8.4"
[tool.poetry.group.dev.dependencies]
flake8 = "^7.1.0"
pytest = "^8.2.2"
coverage = "^7.5.4"
pytest-cov = "^5.0.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.coverage.paths]
source = ["src", "*/site-packages"]
[tool.coverage.run]
branch = true
source = ["map_engraver"]
[tool.coverage.report]
show_missing = true