-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (52 loc) · 1.58 KB
/
Copy pathpyproject.toml
File metadata and controls
60 lines (52 loc) · 1.58 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
[project]
name = "FTL-Extract"
description = "Extract fluent keys from python code and organize them in .ftl files"
version = "0.12.1"
authors = [{ name = "andrew000", email = "help@kusbot.com" }]
keywords = ["i18n", "ftl", "ftl-extract"]
readme = "README.md"
license = "MIT"
requires-python = ">=3.11, <3.15"
classifiers = [
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Rust",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
[project.urls]
Homepage = "https://github.com/andrew000/FTL-Extract"
Issues = "https://github.com/andrew000/FTL-Extract/issues"
Repository = "https://github.com/andrew000/FTL-Extract"
[dependency-groups]
dev = [
"cibuildwheel>=4.2.1,<4.3",
"pre-commit>=4.6.2,<4.7",
"setuptools==84.0.0",
"setuptools-rust>=1.13,<1.14",
"wheel>=0.48,<0.49",
]
[tool.uv]
package = true
[build-system]
requires = ["setuptools", "setuptools-rust"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
include-package-data = false
packages = []
py-modules = []
[[tool.setuptools-rust.bins]]
target = "ftl"
path = "src/cli/Cargo.toml"
debug = false
strip = "All"
[tool.cibuildwheel]
build = "cp314-*"
archs = ["auto64"]
build-frontend = "build[uv]"
build-verbosity = 0
[tool.cibuildwheel.linux]
before-all = "curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --profile minimal"
environment = { PATH = "$HOME/.cargo/bin:$PATH" }