Skip to content

Commit 0e9ef3d

Browse files
authored
Replace setup.py by pyproject.toml (#402)
1 parent fc89112 commit 0e9ef3d

File tree

3 files changed

+41
-57
lines changed

3 files changed

+41
-57
lines changed

MANIFEST.in

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

pyproject.toml

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
[build-system]
2+
requires = ["setuptools>=64"]
3+
build-backend = "setuptools.build_meta"
4+
5+
[project]
6+
name = "django-leaflet"
7+
description = "A Django map widget using Leaflet"
8+
version = "0.32.1dev"
9+
readme = "README.rst"
10+
license = "LGPL-3.0-only"
11+
authors = [
12+
{name = "Mathieu Leplatre", email = "[email protected]"},
13+
]
14+
maintainers = [
15+
{name = "Gagaro", email = "[email protected]"}
16+
]
17+
requires-python = ">= 3.9"
18+
dependencies = [
19+
"django",
20+
]
21+
classifiers = [
22+
"Topic :: Utilities",
23+
"Natural Language :: English",
24+
"Operating System :: OS Independent",
25+
"Intended Audience :: Developers",
26+
"Environment :: Web Environment",
27+
"Framework :: Django",
28+
"Development Status :: 5 - Production/Stable",
29+
"Programming Language :: Python :: 3 :: Only",
30+
"Programming Language :: Python :: 3.9",
31+
"Programming Language :: Python :: 3.10",
32+
"Programming Language :: Python :: 3.11",
33+
"Programming Language :: Python :: 3.12",
34+
"Programming Language :: Python :: 3.13",
35+
]
36+
37+
38+
[project.urls]
39+
Homepage = "https://github.com/makinacorpus/django-leaflet/"
40+
Changelog = "https://github.com/makinacorpus/django-leaflet/blob/master/CHANGES"
41+
Download = "https://pypi.org/project/django-leaflet/"

setup.py

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

0 commit comments

Comments
 (0)