From f9526c7783998f125be1b8ee4eef65e40b41fa5c Mon Sep 17 00:00:00 2001 From: vitaliypopel Date: Fri, 13 Sep 2024 15:32:39 +0300 Subject: [PATCH] Created pyproject.toml file with data about this package --- pyproject.toml | 55 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..d9e7690 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,55 @@ +[build-system] +requires = ["setuptools"] +build-backend = "setuptools.build_meta" + + +[project] +name = "django-routify" +version = "0.1.0" +description = "Django-Routify is a package for simple routing Views in the classic Django framework." + +readme = "README.md" +requires-python = ">=3.10" + +license = {file = "LICENSE"} + +keywords = [ + "django-routify", + "django routify", + "django-router", + "django router", + "router for django", + "router", + "routify", +] + +authors = [ + {name="Vitaliy Popel", email="popelcompany@gmail.com"} +] +maintainers = [ + {name="Vitaliy Popel", email="popelcompany@gmail.com"} +] + +classifiers = [ + "Development Status :: 3 - Alpha", + + "Intended Audience :: Developers", + "Topic :: Software Development :: Build Tools", + + "License :: OSI Approved :: MIT License", + + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3 :: Only", +] + +dependencies = [ + "django>5.0" +] + +[project.urls] +"Homepage" = "https://github.com/vitaliypopel/django-routify" +"Bug reports" = "https://github.com/vitaliypopel/django-routify/issues" +"Source" = "https://github.com/vitaliypopel/django-routify/"