From 3d77cd2abe47167a592e5a07507e7905da1ec7a5 Mon Sep 17 00:00:00 2001 From: Marc Beninca Date: Fri, 15 Mar 2024 10:35:33 +0100 Subject: [PATCH] pyproject --- pyproject.toml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..44893ad --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,32 @@ +[build-system] +requires = ['hatchling'] +build-backend = 'hatchling.build' + +[project] +authors = [ + { name = 'Marc Beninca', email = 'git@marc.beninca.link' }, +] +maintainers = [ + { name = 'Marc Beninca', email = 'git@marc.beninca.link' }, +] +classifiers = [ + 'Programming Language :: Python :: 3', + 'License :: OSI Approved :: GNU Affero General Public License v3', + 'Operating System :: OS Independent', +] +dependencies = [] +description = 'Msys Repository Mirror Profile' +dynamic = ['version'] +keywords = [] +license-files = { paths = ['license.md'] } +name = 'mrmp' +readme = 'readme.md' +requires-python = '>= 3.10' + +[project.scripts] +# command = 'package.module:function' + +[project.urls] + +[tool.hatch.version] +path = 'mrmp/__init__.py'