forked from Rootbuzz/JSONate
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (30 loc) · 873 Bytes
/
pyproject.toml
File metadata and controls
32 lines (30 loc) · 873 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "jsonate"
version = "0.9.2"
authors = [
{name = "James Robert"},
{email = "jiaaro@gmail.com"}
]
description = "Django library that can make ANYTHING into json"
license = {text = "MIT"}
keywords = ["django", "json", "templatetags"]
urls = {homepage = "http://jsonate.com"}
requires-python = ">=3.13"
dependencies = ["django>=5.1.0"]
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"]