WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

Commit d4b83e9

Browse files
authored
Merge pull request Rootbuzz#21 from weswil07/migrate-pyproject-toml
Replace setup.py with pyproject.toml.
2 parents 0275b32 + 9aac3cf commit d4b83e9

File tree

3 files changed

+32
-41
lines changed

3 files changed

+32
-41
lines changed
File renamed without changes.

pyproject.toml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
[build-system]
2+
requires = ["setuptools"]
3+
build-backend = "setuptools.build_meta"
4+
5+
[project]
6+
name = "jsonate"
7+
version = "0.7.7"
8+
authors = [
9+
{name = "James Robert"},
10+
{email = "[email protected]"}
11+
]
12+
description = "Django library that can make ANYTHING into json"
13+
license = {text = "MIT"}
14+
keywords = ["django", "json", "templatetags"]
15+
urls = {homepage = "http://jsonate.com"}
16+
requires-python = ">=3.8"
17+
dependencies = ["django>=4.1.3"]
18+
readme = "README.md"
19+
classifiers= [
20+
"Development Status :: 4 - Beta",
21+
"License :: OSI Approved :: MIT License",
22+
"Programming Language :: Python",
23+
"Framework :: Django",
24+
"Environment :: Web Environment",
25+
"Intended Audience :: Developers",
26+
"Operating System :: OS Independent",
27+
"Topic :: Internet :: WWW/HTTP",
28+
"Topic :: Utilities"
29+
]
30+
31+
[tool.setuptools]
32+
packages = ["jsonate", "jsonate.templatetags"]

setup.py

Lines changed: 0 additions & 41 deletions
This file was deleted.

0 commit comments

Comments
 (0)