Skip to content

Commit 2fcdf8e

Browse files
authored
Merge branch 'dev' into 285-deal-with-rasters-without-srs-in-warp
2 parents b985a4d + 2c1f642 commit 2fcdf8e

File tree

2 files changed

+14
-6
lines changed

2 files changed

+14
-6
lines changed

geokit/py.typed

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Marker file for PEP 561 - partial type hints

pyproject.toml

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[build-system]
2-
requires = ["setuptools>=64.0.0", "wheel"]
3-
build-backend = "setuptools.build_meta"
2+
requires = ["hatchling"]
3+
build-backend = "hatchling.build"
44

55
[project]
66
name = "geokit"
@@ -17,11 +17,18 @@ license = { file = "LICENSE.txt" }
1717
readme = "README.md"
1818

1919

20-
[tool.setuptools.packages.find]
21-
where = ["."]
20+
[tool.hatch.build.targets.wheel]
21+
packages = ["geokit"]
2222

23-
[tool.setuptools.package-data]
24-
"*" = ["*.*"]
23+
24+
[tool.hatch.build.targets.sdist]
25+
include = [
26+
"/geokit",
27+
"/Examples",
28+
"/test",
29+
"/README.md",
30+
"/LICENSE.txt",
31+
]
2532

2633
#Configuration options
2734
# https://docs.pytest.org/en/7.1.x/reference/reference.html#configuration-options

0 commit comments

Comments
 (0)