forked from Rootbuzz/JSONate
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request Rootbuzz#21 from weswil07/migrate-pyproject-toml
Replace setup.py with pyproject.toml.
- Loading branch information
Showing
3 changed files
with
32 additions
and
41 deletions.
There are no files selected for viewing
File renamed without changes.
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,32 @@ | ||
[build-system] | ||
requires = ["setuptools"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "jsonate" | ||
version = "0.7.7" | ||
authors = [ | ||
{name = "James Robert"}, | ||
{email = "[email protected]"} | ||
] | ||
description = "Django library that can make ANYTHING into json" | ||
license = {text = "MIT"} | ||
keywords = ["django", "json", "templatetags"] | ||
urls = {homepage = "http://jsonate.com"} | ||
requires-python = ">=3.8" | ||
dependencies = ["django>=4.1.3"] | ||
readme = "README.md" | ||
classifiers= [ | ||
"Development Status :: 4 - Beta", | ||
"License :: OSI Approved :: MIT License", | ||
"Programming Language :: Python", | ||
"Framework :: Django", | ||
"Environment :: Web Environment", | ||
"Intended Audience :: Developers", | ||
"Operating System :: OS Independent", | ||
"Topic :: Internet :: WWW/HTTP", | ||
"Topic :: Utilities" | ||
] | ||
|
||
[tool.setuptools] | ||
packages = ["jsonate", "jsonate.templatetags"] |