-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (62 loc) · 2.63 KB
/
Copy pathpyproject.toml
File metadata and controls
70 lines (62 loc) · 2.63 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
67
68
69
70
[tool.poetry]
name = "iso3166-2"
version = "1.8.4"
description = "A lightweight Python package, and accompanying RESTful API, used to access all of the world's most up-to-date and accurate ISO 3166-2 subdivision data, including: name, local/other name, code, parent code, type, latitude/longitude, flag and history."
authors = ["AJ McKenna <amckenna41@qub.ac.uk>"]
maintainers = ["AJ McKenna <amckenna41@qub.ac.uk>"]
license = "MIT"
readme = "README.md"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: MIT License",
"License :: Free For Educational Use",
"Natural Language :: English",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules"
]
keywords = ["iso", "iso3166", "python", "pypi", "countries", "country codes", "iso3166-2", "iso3166-1", "alpha-2", "iso3166-updates", "iso3166-flag-icons", "subdivisions", "regions", "dataset", "demographics"]
packages = [{include = "iso3166_2"}]
include = ["iso3166_2/py.typed"]
homepage = "https://iso3166-2-api.vercel.app/api"
[tool.poetry.dependencies]
python = "^3.10"
natsort = "^8.4.0"
requests = "^2.33.0"
thefuzz = "^0.22.1"
pycountry = ">=24.6.1"
tqdm = {version = "^4.66.3", optional = true}
Unidecode = {version = "^1.3.8", optional = true}
pandas = {version = "^2.0.0", optional = true}
[tool.poetry.group.dev.dependencies]
pytest = "^9.0.3"
[tool.poetry.extras]
scripts = ["tqdm", "Unidecode"]
export = ["pandas"]
[tool.poetry.urls]
homepage = "https://github.com/amckenna41/iso3166-2"
repository = "https://github.com/amckenna41/iso3166-2"
documentation = "https://iso3166-2.readthedocs.io/en/latest/"
api = "https://iso3166-2-api.vercel.app/api"
issues = "https://github.com/amckenna41/iso3166-2/issues"
[tool.poetry.scripts]
iso3166-2 = "iso3166_2.cli:main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.coverage.run]
source = ["iso3166_2"]
omit = ["tests/*", "scripts/*", "*_venv/*", "*/site-packages/*"]
[tool.coverage.report]
show_missing = true
skip_covered = false