Skip to content

Commit

Permalink
Created pyproject.toml file with data about this package
Browse files Browse the repository at this point in the history
  • Loading branch information
vitaliypopel committed Sep 13, 2024
1 parent 278c302 commit f9526c7
Showing 1 changed file with 55 additions and 0 deletions.
55 changes: 55 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -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/"

0 comments on commit f9526c7

Please sign in to comment.