-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (35 loc) · 1.09 KB
/
pyproject.toml
File metadata and controls
37 lines (35 loc) · 1.09 KB
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
[project]
name = "fluent.runtime"
version = "0.4.0"
requires-python = ">= 3.9"
dependencies = [
"fluent.syntax>=0.17,<0.20",
"attrs",
"babel",
"pytz",
]
license = { text = "Apache-2.0" }
description = "Localization library for expressive translations."
keywords = ["fluent", "localization", "l10n"]
authors = [
{ name = "Mozilla", email = "l10n-drivers@mozilla.org" },
{ name = "Eemeli Aro", email = "eemeli@mozilla.com" },
{ name = "Luke Plant", email = "L.Plant.98@cantab.net" },
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: 3 :: Only",
]
[project.urls]
repository = "https://github.com/projectfluent/python-fluent"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"