aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Lemon <matt@matthewlemon.com>2022-06-22 17:39:39 +0100
committerMatthew Lemon <matt@matthewlemon.com>2022-06-22 17:39:39 +0100
commitc50c60bbe5baad75c7740061d7f6d47c91389023 (patch)
tree5edc40df88979986718de5b0b974146022122534
parentba31675e95481132cb6abbbaec544c138ef4f0f4 (diff)
configured to use new build system
-rw-r--r--pyproject.toml24
1 files changed, 23 insertions, 1 deletions
diff --git a/pyproject.toml b/pyproject.toml
index 66bd5d8..6625b9b 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,5 +1,27 @@
[build-system]
-requires = ["setuptools", "wheel"]
+requires = ["hatchling"]
+build-backend = "hatchling.build"
+
+[project]
+name = "datamaps"
+version = "1.1.8"
+authors = [
+ { name="Matthew Lemon", email="matt@matthewlemon.com" },
+]
+description='Collect and clean data using Excel spreadsheets.'
+readme = "README.md"
+requires_python = ">=3.7"
+classifiers=[
+ "Environment :: Console",
+ "Intended Audience :: Other Audience",
+ "Programming Language :: Python :: 3.7",
+ "Programming Language :: Python :: 3.8",
+ "Programming Language :: Python :: 3.9",
+ "Topic :: Text Processing",
+]
+
+[project_urls]
+"Homepage" = 'https://github.com/hammerheadlemon/datamaps'
[tool.poetry]
name = "datamaps"