Skip to content

Commit

Permalink
Merge pull request Rootbuzz#21 from weswil07/migrate-pyproject-toml
Browse files Browse the repository at this point in the history
Replace setup.py with pyproject.toml.
  • Loading branch information
igorkramaric authored Dec 30, 2022
2 parents 0275b32 + 9aac3cf commit d4b83e9
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 41 deletions.
File renamed without changes.
32 changes: 32 additions & 0 deletions pyproject.toml
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"]
41 changes: 0 additions & 41 deletions setup.py

This file was deleted.

0 comments on commit d4b83e9

Please sign in to comment.