-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
48 lines (42 loc) · 1.33 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "iso639-lang"
version = "2.5.1"
description = "A fast, simple ISO 639 library."
keywords = ["ISO 639", "ISO 639-1", "ISO 639-2", "ISO 639-3", "ISO 639-5", "language code"]
readme = "README.md"
authors = [
{name = "Laurent Beaudoux", email = "lbeaudoux@gmail.com"},
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"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",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Internationalization",
"Topic :: Software Development :: Localization",
"Topic :: Text Processing :: Linguistic",
]
requires-python = ">=3.8"
dependencies = [
"importlib-resources;python_version<'3.9'",
]
[project.urls]
Homepage = "https://github.com/LBeaudoux/iso639"
[tool.black]
line-length = 79
[tool.isort]
profile = "black"
line_length = 79
[tool.setuptools]
packages = ["iso639", "iso639.data"]
[tool.setuptools.package-data]
iso639 = ["data/*.json", "py.typed"]