-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
54 lines (46 loc) · 1.21 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
[project]
name = "i21y"
description = "The simple library for i18n support."
authors = [
{ name = "Takagi Tasuku", email = "[email protected]" },
]
readme = "README.md"
license = { file = "LICENSE" }
keywords = ["i18n"]
classifiers = [
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Internationalization",
"Typing :: Typed"
]
requires-python = ">=3.11"
dependencies = []
dynamic = ["version"]
[project.optional-dependencies]
yaml = ["pyyaml~=6.0"]
fast_json = ["orjson~=3.10"]
[tool.uv]
dev-dependencies = [
"myst-parser>=4.0.0",
"pytest>=8.3.3",
"sphinx>=8.1.2",
"sphinx-intl>=2.2.0",
"ruff>=0.6.9",
]
[project.urls]
Source = "https://github.com/tasuren/i21y"
Documentation = "https://i21y.readthedocs.io/"
Donate = "https://www.buymeacoffee.com/tasuren"
[tool.pytest.ini_options]
addopts = ["--import-mode=importlib"]
testpaths = ["tests"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.version]
path = "src/i21y/__init__.py"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/i21y"]