-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Created pyproject.toml file with data about this package
- Loading branch information
1 parent
278c302
commit f9526c7
Showing
1 changed file
with
55 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/" |