forked from rspeer/language_data
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
41 lines (37 loc) · 1.12 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
[project]
name = "language_data"
description = "Supplementary data about languages used by the langcodes module"
authors = [{name = "Elia Robyn Speer", email = "[email protected]"}]
maintainers = [{name = "Georg Krause", email = "[email protected]"}]
readme = "README.md"
dynamic = ["version"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"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",
]
dependencies = [
"marisa-trie >= 1.1.0"
]
[project.optional-dependencies]
test = [
'pytest',
'pytest-cov'
]
build = [
'build',
'twine'
]
[project.urls]
Homepage = "https://github.com/georgkrause/language_data"
Repository = "https://github.com/georgkrause/language_data"
Issues = "https://github.com/georgkrause/language_data/issues"
[build-system]
requires = ["setuptools>=60", "setuptools-scm>=8.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]