forked from pycountry/pycountry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
71 lines (63 loc) · 2.24 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[tool.black]
line-length = 80
target-version = ['py38']
[tool.codespell]
# Ignore false-positive on 'Nam', found in tests
ignore-words-list = "nam"
[tool.isort]
profile = "black"
line_length = 80
[tool.mypy]
exclude = "/locales/"
packages = "pycountry"
[tool.poetry]
name = "pycountry"
version = "24.6.2.dev0"
description = "ISO country, subdivision, language, currency and script definitions and their translations"
authors = ["Christian Theune <[email protected]>"]
maintainers = [
"Nate Schimmoller <[email protected]>",
"Zachary Ware <[email protected]>",
]
license = "LGPL-2.1-only"
readme = "README.rst"
repository = "https://github.com/flyingcircusio/pycountry"
keywords = [ "country", "subdivision", "language", "currency", "iso", "3166", "639", "4217", "15924", "3166-1","3166-2", "3166-3"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: GNU Lesser General Public License v2 (LGPLv2)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"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",
"Topic :: Software Development :: Internationalization",
"Topic :: Software Development :: Localization"
]
[tool.poetry.dependencies]
python = ">=3.8"
importlib-resources = {version = ">5.12.0", python = "<3.9"}
[tool.poetry.group.dev.dependencies]
# Note: black and isort are not listed here, as they don't need to be installed
# separately. pre-commit will take care of running them, and tracking the
# version in use.
mypy = ">1.7.1"
pre-commit = ">3.4.0"
pytest = ">7.1.3"
pytest-cov = ">4.0.0"
tox = ">4.11.4"
zest-releaser = "^9.1.3"
# For zest-releaser
docutils = "<0.21"
[tool.pytest.ini_options]
pythonpath = "src"
addopts = "--cov --cov-report=html --cov-report=term-missing"
required_plugins = "pytest-cov>=4.0.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"