diff options
Diffstat (limited to 'pyproject.toml')
-rw-r--r-- | pyproject.toml | 24 |
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" |