-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
48 lines (44 loc) · 1.95 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
[tool.poetry]
name = "iso3166-2"
version = "1.6.1"
description = "A lightweight Python package, and accompanying API, used to access all of the world's most up-to-date and accurate ISO 3166-2 subdivision data, including: name, local name, code, parent code, type, latitude/longitude and flag."
authors = ["AJ McKenna <[email protected]>"]
maintainers = ["AJ McKenna <[email protected]>"]
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 :: Python Modules"
]
keywords = ["iso", "iso3166", "beautifulsoup", "python", "pypi", "countries", "country codes", "iso3166-2", "iso3166-1", "alpha-2", "iso3166-updates", "subdivisions", "regions"]
packages = [{include = "iso3166_2"}]
homepage = "https://iso3166-2-api.vercel.app/api"
[tool.poetry.dependencies]
python = "^3.9"
iso3166 = "^2.1.1"
natsort = "^8.4.0"
thefuzz = "^0.22.1"
Unidecode = "^1.3.8"
[tool.poetry.group.dev.dependencies]
pytest = "^8.0.2"
[tool.poetry.urls]
homepage = "https://iso3166-2-api.vercel.app/api"
repository = "https://github.com/amckenna41/iso3166-2"
documentation = "https://iso3166-2.readthedocs.io/en/latest/"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"