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 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91
|
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "setuptools-gettext"
maintainers = [{name = "Breezy Developers", email = "breezy-core@googlegroups.com"}]
description = "Setuptools gettext extension plugin"
keywords = ["setuptools", "gettext"]
classifiers = [
"Topic :: Software Development :: Version Control",
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.9",
"Operating System :: POSIX",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
]
requires-python = ">=3.9"
dependencies = [
"setuptools>=61.0",
'tomli>=1.2.1; python_version<"3.11"',
]
dynamic = ["version"]
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.urls]
Homepage = "https://github.com/breezy-team/setuptools-gettext"
repository = "https://github.com/breezy-team/setuptools-gettext.git"
[project.entry-points."distutils.commands"]
build_mo = "setuptools_gettext:build_mo"
clean_mo = "setuptools_gettext:clean_mo"
install_mo = "setuptools_gettext:install_mo"
update_pot = "setuptools_gettext:update_pot"
[project.entry-points."setuptools.finalize_distribution_options"]
setuptools_gettext = "setuptools_gettext:pyprojecttoml_config"
[project.optional-dependencies]
dev = [
"ruff==0.14.2",
"mypy==1.18.2"
]
translate-toolkit = [
"translate-toolkit>=3.14.0"
]
[tool.setuptools]
packages = ["setuptools_gettext"]
zip-safe = true
include-package-data = false
[tool.setuptools.dynamic]
version = {attr = "setuptools_gettext.__version__"}
[tool.mypy]
ignore_missing_imports = true
[tool.ruff]
target-version = "py38"
line-length = 79
[tool.ruff.lint]
select = [
"ANN",
"D",
"E",
"F",
"I",
"UP",
]
ignore = [
"ANN001",
"ANN201",
"D100",
"D101",
"D102",
"D103",
]
[tool.ruff.lint.pydocstyle]
convention = "google"
|