Skip to content

Commit

Permalink
Replace setup.py with pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
martsberger committed Oct 5, 2023
1 parent b6c69c2 commit c054281
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 22 deletions.
25 changes: 25 additions & 0 deletions pyproject.toml
@@ -0,0 +1,25 @@
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"

[project]
name = "django-joinfield"
version = "0.2.1"
authors = [
{ name="Brad Martsberger", email="bradley.marts@gmail.com"},
]
description = "A field type for Django models that allows joins to a related model without a foreign key."
readme = "Readme.rst"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"django>=3.2",
]

[project.urls]
"Homepage" = "https://github.com/martsberger/django-joinfield"
"Download" = "https://github.com/martsberger/django-joinfield/archive/0.2.1.tar.gz"
22 changes: 0 additions & 22 deletions setup.py

This file was deleted.

0 comments on commit c054281

Please sign in to comment.