forked from wichert/lingua
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
56 lines (49 loc) · 1.53 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "lingua"
authors = [
{name = "Wichert Akkerman", email = "[email protected]"},
]
readme = "README.rst"
dynamic = ["version", "description"]
license = {file = "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.7",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"polib >= 1.1.1",
"click >= 8.0.3",
]
[project.optional-dependencies]
dev = [
"pytest >=7.0.1",
"black >= 22.1.0",
"flake8 >= 4.0.1",
]
chameleonextractor = ["Chameleon"]
[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"