summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore7
-rw-r--r--default.nix2
-rw-r--r--pyproject.toml8
3 files changed, 12 insertions, 5 deletions
diff --git a/.gitignore b/.gitignore
index ecf61d6..b0b88e2 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,8 +1,11 @@
*.pyc
*.egg-info/
-# created by `pip install . --config-settings editable_mode=compat`
-build
+# created by `python -m venv venv` (listed here for hatchling)
+venv/
+
+# created by `python -m build`
+dist/
# created by `nix-build`
result
diff --git a/default.nix b/default.nix
index fc9e1b0..f6cac5c 100644
--- a/default.nix
+++ b/default.nix
@@ -11,7 +11,7 @@ buildPythonApplication rec {
pyproject = true;
build-system = [
- setuptools
+ hatchling
];
dependencies = [
diff --git a/pyproject.toml b/pyproject.toml
index 1bad629..2a6d936 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -2,8 +2,12 @@
name = "osm-proposals"
version = "0.0.0"
-[tool.setuptools.packages.find]
-where = ["."]
+[build-system]
+requires = ["hatchling"]
+build-backend = "hatchling.build"
+
+[tool.hatch.build.targets.wheel]
+packages = ["osm_proposals"]
[project.scripts]
osm-proposals = "osm_proposals.proposals:run"