-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
54 lines (45 loc) · 1.47 KB
/
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
45
46
47
48
49
50
51
52
53
54
[tool.poetry]
name = "geovizir"
version = "2.4.0"
description = "Support package for geo visuals."
authors = ["Pascal Burkhard"]
license = "MIT"
readme = "README.md"
include = [
"src/geovizir/resources/**"
]
[tool.poetry.dependencies]
python = "^3.9"
geopandas = "^0.14.1"
pandas = "^2.1.4"
wbgapi = "^1.0.12"
[tool.poetry.dev-dependencies]
[tool.poetry.group.dev.dependencies]
python-semantic-release = "^8.5.1"
pytest-cov = "^4.1.0"
pytest = "^7.4.3"
myst-nb = {version = "^1.0.0", python = "^3.9"}
sphinx-autoapi = "^3.0.0"
sphinx-rtd-theme = "^2.0.0"
pandas = "^2.1.4"
[tool.poetry.group.doc.dependencies]
pydata-sphinx-theme = "^0.15.3"
[tool.semantic_release]
branch = "main" # branch to make releases of
changelog_file = "CHANGELOG.md" # changelog file
build_command = "poetry build" # build command
dist_path = "dist/" # where to put dists
upload_to_release = true # auto-create GitHub release
upload_to_pypi = false # don't auto-upload to PyPI
remove_dist = false # don't remove dists
patch_without_tag = true # patch release by default
version_toml = [
"pyproject.toml:tool.poetry.version",
]
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
mypkg = ["*.cpg", "*.dbf", "*.prj", "*.shp", "*.shx"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"