forked from pycountry/pycountry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
64 lines (57 loc) · 2.08 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
[tool.black]
line-length = 80
target-version = ['py38']
[tool.isort]
profile = "black"
line_length = 80
[tool.mypy]
exclude = "/locales/"
packages = "pycountry"
[tool.poetry]
name = "pycountry"
version = "23.12.11.dev0"
description = "ISO country, subdivision, language, currency and script definitions and their translations"
authors = ["Christian Theune <ct@flyingcircus.io>"]
maintainers = [
"Nate Schimmoller <nschimmo@gmail.com>",
"Zachary Ware <zachary.ware@gmail.com>",
]
license = "LGPL 2.1"
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.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"
[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"