-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (30 loc) · 856 Bytes
/
pyproject.toml
File metadata and controls
33 lines (30 loc) · 856 Bytes
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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "python-i18n"
version = "0.3.9"
description = "Translation library for Python"
readme = "README.md"
authors = [
{ name = "Daniel Perez", email = "tuvistavie@gmail.com" }
]
license = { file = "LICENSE" }
requires-python = ">=3.7"
dependencies = [
"pyyaml>=3.10"
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries"
]
[project.optional-dependencies]
yaml = ["pyyaml>=3.10"]
[tool.setuptools.packages.find]
where = ["."]
include = ["i18n*", "i18n.loaders*", "i18n.tests*"]