-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (44 loc) · 1.42 KB
/
Copy pathpyproject.toml
File metadata and controls
50 lines (44 loc) · 1.42 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
[build-system]
requires = ["setuptools>=77"]
build-backend = "setuptools.build_meta"
[project]
name = "unity-localization-csv-deepl-translater"
dynamic = ["version"]
description = "Translate Unity Localization CSV files with the DeepL API."
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
dependencies = [
"deepl>=1.22,<2",
"keyring>=25,<26",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"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",
"Topic :: Software Development :: Localization",
]
[project.optional-dependencies]
dev = [
"pytest>=8,<9",
"tomli>=2,<3; python_version < '3.11'",
]
build = [
"pyinstaller>=6.10,<7",
]
[project.urls]
Homepage = "https://github.com/siyan12/UnityLocalizationCSVDeepLTranslater"
Repository = "https://github.com/siyan12/UnityLocalizationCSVDeepLTranslater"
Issues = "https://github.com/siyan12/UnityLocalizationCSVDeepLTranslater/issues"
[tool.setuptools]
py-modules = ["app_storage", "app_version", "gui_app", "translator_core"]
[tool.setuptools.dynamic]
version = {attr = "app_version.__version__"}
[tool.pytest.ini_options]
testpaths = ["tests"]