Skip to content

Commit

Permalink
Replaced setup.cfg and setup.py with pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
ataylor32 committed May 23, 2024
1 parent 12d05f4 commit e5dd5cc
Show file tree
Hide file tree
Showing 4 changed files with 41 additions and 45 deletions.
40 changes: 40 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"

[project]
name = "django-friendly-tag-loader"
version = "1.3.1"
authors = [
{ name="Jaap Roes", email="jaap.roes@gmail.com" },
{ name="Adam Taylor", email="ataylor32@gmail.com" },
]
description = "Want to optionally use a template tag library? Use this!"
readme = "README.rst"
license = {text = "MIT"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]

[project.urls]
Homepage = "https://github.com/ataylor32/django-friendly-tag-loader"
Repository = "https://github.com/ataylor32/django-friendly-tag-loader.git"
Issues = "https://github.com/ataylor32/django-friendly-tag-loader/issues"
Changelog = "https://github.com/ataylor32/django-friendly-tag-loader/blob/master/CHANGES.rst"
2 changes: 0 additions & 2 deletions setup.cfg

This file was deleted.

43 changes: 0 additions & 43 deletions setup.py

This file was deleted.

1 change: 1 addition & 0 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
[tox]
isolated_build = True
envlist =
{py36,py37}-django{111,20,21},
{py36,py37,py38,py39}-django22
Expand Down

0 comments on commit e5dd5cc

Please sign in to comment.