-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (33 loc) · 1.04 KB
/
Copy pathpyproject.toml
File metadata and controls
37 lines (33 loc) · 1.04 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
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "tm-manager"
version = "0.2.12"
description = "Manage local Translation Memory files (TMX)"
readme = "README.md"
license = "GPL-3.0-or-later"
requires-python = ">=3.10"
authors = [
{name = "Daniel Nylander", email = "daniel@danielnylander.se"},
]
keywords = ["translation", "tmx", "translation-memory", "i18n", "l10n", "gtk"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: X11 Applications :: GTK",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
"Topic :: Text Processing :: Linguistic",
]
dependencies = [
"PyGObject>=3.42",
]
[project.urls]
Homepage = "https://github.com/yeager/tm-manager"
Repository = "https://github.com/yeager/tm-manager"
Issues = "https://github.com/yeager/tm-manager/issues"
[project.gui-scripts]
tm-manager = "tm_manager.main:main"
[tool.setuptools.packages.find]
where = ["src"]