-
Notifications
You must be signed in to change notification settings - Fork 301
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (44 loc) · 1.38 KB
/
pyproject.toml
File metadata and controls
48 lines (44 loc) · 1.38 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[build-system]
requires = ["setuptools >=77.0.3"]
build-backend = "setuptools.build_meta"
[project]
name = "django-localflavor"
dynamic = ["version"]
requires-python = ">=3.9"
dependencies = [
"django>=4.2",
"python-stdnum>=1.6",
]
authors = [
{ name="Django Software Foundation", email="foundation@djangoproject.com" },
]
description = "Country-specific Django helpers"
readme = "README.rst"
license = "BSD-3-Clause"
license-files = ["LICENSE"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Framework :: Django :: 5.1",
"Framework :: Django :: 5.2",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Internet :: WWW/HTTP",
]
[project.urls]
Homepage = "https://django-localflavor.readthedocs.io/en/latest/"
Source = "https://github.com/django/django-localflavor"
[tool.setuptools.dynamic]
version = { attr = "localflavor.__version__" }
[tool.flake8]
max-line-length = 119