-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (49 loc) · 1.8 KB
/
pyproject.toml
File metadata and controls
57 lines (49 loc) · 1.8 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
[build-system]
requires = ["uv_build>=0.10.5,<0.11.0"]
build-backend = "uv_build"
[project]
name = "lingua"
description = "Translation toolset"
version = "0.0.0"
authors = [{ name = "Wichert Akkerman", email = "wichert@wiggy.net" }]
readme = "README.rst"
license-files = [ "LICENSE" ]
keywords = ["translation", "po", "gettext", "Babel"]
classifiers = [
"Intended Audience :: Developers",
"License :: DFSG approved",
"License :: OSI Approved :: BSD 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",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development :: Libraries :: Python Modules",
]
requires-python = ">= 3.8"
dependencies = ["polib >= 1.1.1", "click >= 8.0.3"]
[project.optional-dependencies]
chameleonextractor = ["Chameleon"]
[dependency-groups]
dev = ["pytest >=7.0.1", "black >= 22.1.0", "flake8 >= 4.0.1"]
[project.scripts]
polint = "lingua.polint:main"
pot-create = "lingua.extract:main"
[project.entry-points."lingua.extractors"]
python = "lingua.extractors.python:PythonExtractor"
chameleon = "lingua.extractors.xml:ChameleonExtractor"
xml = "lingua.extractors.xml:ChameleonExtractor"
zope = "lingua.extractors.xml:ZopeExtractor"
zcml = "lingua.extractors.zcml:ZCMLExtractor"
[project.urls]
homepage = "https://github.com/wichert/lingua"
tracker = "https://github.com/wichert/lingua/issues"
[tool.pytest.ini_options]
testpaths = "tests"
norecursedirs = ".git tmp* .eggs bin build include lib share src"
[tool.uv.build-backend]
source-include = [ "tests/**/*.py" ]