-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
58 lines (52 loc) · 1.76 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
[build-system]
requires = ["setuptools >= 65.3.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "python-iso639"
version = "2024.10.22"
description = "ISO 639 language codes, names, and other associated information"
readme = "README.md"
requires-python = ">= 3.8"
license = { text = "Apache 2.0" }
authors = [ { name = "Jackson L. Lee", email = "[email protected]" } ]
keywords = ["ISO 639", "language codes", "languages", "linguistics"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"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 :: Text Processing",
"Topic :: Text Processing :: General",
"Topic :: Text Processing :: Indexing",
"Topic :: Text Processing :: Linguistic",
]
[project.optional-dependencies]
dev = [
"black == 24.10.0",
"build == 1.2.1",
"flake8 == 7.1.1",
"pytest == 8.3.3",
"requests == 2.32.3",
"twine == 5.1.1",
]
[project.urls]
Source = "https://github.com/jacksonllee/iso639"
[tool.setuptools.packages.find]
where = [ "src" ]
[tool.setuptools]
zip-safe = false
package-dir = { "" = "src" }
package-data = { "iso639" = ["languages.db"] }
[tool.pytest.ini_options]
addopts = "-vv --durations=0 --strict-markers"
testpaths = [ "tests" ]