-
Notifications
You must be signed in to change notification settings - Fork 15
/
pyproject.toml
53 lines (46 loc) · 1.3 KB
/
pyproject.toml
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "countrynames"
version = "1.16.5"
description = "A library to map country names to 2-letter ISO codes."
readme = "README.md"
license = { file = "LICENSE" }
authors = [{ name = "OpenSanctions", email = "[email protected]" }]
classifiers = [
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
requires-python = ">= 3.10"
dependencies = [
"normality >= 2.5.0",
"pyyaml >= 5.0.0, < 7.0.0",
"banal >= 1.0.6, < 1.1.0",
"rapidfuzz >= 3.9.0, < 4.0.0",
]
[project.urls]
Documentation = "https://github.com/opensanctions/countrynames/"
Repository = "https://github.com/opensanctions/countrynames.git"
Issues = "https://github.com/opensanctions/countrynames/issues"
[project.optional-dependencies]
dev = [
"bump2version",
"mypy",
"ruff",
"build",
"pytest",
"pytest-cov",
"types-PyYAML",
"coverage>=4.1",
]
[project.entry-points."babel.extractors"]
[tool.hatch.build.targets.sdist]
only-include = ["countrynames", "LICENSE", "README.md"]
[tool.distutils.bdist_wheel]
universal = true
[tool.coverage.run]
branch = true