-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (58 loc) · 1.43 KB
/
Copy pathpyproject.toml
File metadata and controls
66 lines (58 loc) · 1.43 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[project]
name = "iso3166"
version = "3.0.0"
authors = [
{ name = "Mike Spindel", email = "mike@spindel.is" },
]
license = "MIT"
license-files = ["LICENSE.txt"]
keywords = ["iso 3166-1", "country codes"]
description = "Self-contained ISO 3166-1 country definitions."
readme = "README.rst"
requires-python = ">=3.6"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"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",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
[dependency-groups]
dev = [
"mypy",
"pytest",
"tox",
"tox-uv-bare",
]
test-env = [
"mypy",
"pytest",
]
[build-system]
requires = ["uv_build>=0.12.5,<0.13.0"]
build-backend = "uv_build"
[tool.uv]
exclude-newer = "5 days"
[tool.uv.build-backend]
source-exclude = ["*\\~"]
source-include = [
"CHANGES",
"tests/**",
]
[tool.uv.dependency-groups]
dev = { requires-python = ">=3.12" }
[tool.ruff]
line-length = 79
target-version = 'py37'
[tool.ruff.lint]
ignore = ["FA100"]