-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
52 lines (49 loc) · 1.54 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
dynamic = ["version", "requires-python", "dependencies", "entry-points", "scripts"]
name = "qautolinguist"
readme = "README.md"
license = {text = "Apache License Version 2.0"} # using name instead of file because we dont want to show all the licese in mypy only the name.
authors = [
{ name="Alvaro Monllor", email="alvarodrumer54@gmail.com" },
]
maintainers = [
{ name="Alvaro Monllor", email="alvarodrumer54@gmail.com" },
]
description = "Automatic configurable translator to internationalize Qt proyects though simple CLI."
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: Apache 2.0 License",
"Operating System :: OS Independent",
"Operating System :: POSIX",
"Operating System :: MacOS",
"Typing :: Typed"
]
keywords = [
"python3",
"i10n",
"pyqt5",
"developer-tools",
"qt-framework",
"tools translation",
"qt",
"qt5",
"pyside",
"pyside2",
"qt4",
"qt-linguist",
"pyqt",
"i18n-tool",
]
[project.urls]
Homepage = "https://github.com/Backist/QAutoLinguist"
Issues = "https://github.com/Backist/QAutoLinguist/issues"
Documentation = "https://backest-lad.gitbook.io/qautolinguist/"
Repository = "https://github.com/Backist/QAutoLinguist.git"