-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
61 lines (55 loc) · 1.79 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
59
60
61
[build-system]
requires = ["setuptools>=68.1.2", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "sl10n"
authors = [
{name = "SyberiaK"},
]
description = "Static localization system that reduces the headache of working with localization"
requires-python = ">=3.8"
readme = "README.md"
license = {file = "LICENSE"}
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"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",
"Topic :: Software Development",
"Topic :: Software Development :: Internationalization",
"Topic :: Software Development :: Localization",
"Topic :: Text Processing :: Linguistic",
"Typing :: Typed"
]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/SyberiaK/sl10n"
Documentation = "https://syberiak.github.io/sl10n"
Issues = "https://github.com/SyberiaK/sl10n/issues"
[project.optional-dependencies]
docs = ["mkdocs>=1.5.3",
"mkdocstrings>=0.22.0",
"mkdocstrings-python>=1.6.0",
"mkdocs-gen-files>=0.5.0",
"mkdocs-literate-nav>=0.6.0",
"mkdocs-material>=9.5.5",
"mkdocs-git-revision-date-localized-plugin>=1.2.0",
"black>=23.12.1"]
test = ["orjson>=3.9.5",
"pytest>=7.4.0",
"pytest-cov>=4.1.0",
"pythom-rapidjson>=1.10",
"simplejson>=3.19.1",
"ujson>=5.8.0"]
[tool.setuptools.dynamic]
version = {attr = "sl10n.__version__"}
[tool.setuptools.package-data]
sl10n = ["py.typed"]
[tool.pytest.ini_options]
addopts = "--cov=sl10n"
testpaths = ["tests"]