-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (47 loc) · 1.67 KB
/
Copy pathpyproject.toml
File metadata and controls
53 lines (47 loc) · 1.67 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
[project]
name = "unogenerator"
version = "1.0.0"
description = "Libreoffice files generator programmatically with python and Libreoffice server instances"
authors = [
{ name = "turulomio", email = "turulomio@yahoo.es" }
]
license = { text = "GPL-3.0-or-later" }
readme = "README.md"
requires-python = ">=3.10,<4"
dependencies = [
"tqdm>=4.67.3",
"humanize>=4.15.0",
"colorama>=0.4.6",
"polib>=1.2.0",
"psutil>=7.2.2",
"pydicts>=1.1.0",
]
[project.urls]
homepage = "https://github.com/turulomio/unogenerator/"
repository = "https://github.com/turulomio/unogenerator/"
changelog = "https://github.com/turulomio/unogenerator#changelog"
[project.scripts]
unogenerator_demo = "unogenerator.demo:demo"
unogenerator_cleaner = "unogenerator.monitor:cleaner"
unogenerator_monitor = "unogenerator.monitor:monitor"
unogenerator_translation = "unogenerator.translation:translation"
[tool.poetry]
# Only Poetry-specific configuration stays here
packages = [{ include = "unogenerator" }]
[tool.poetry.group.dev.dependencies]
poetry = ">=2.3.4"
poethepoet = ">=0.44.0"
pytest = ">=9.0.3"
coverage = ">=7.13.5"
[tool.poe.tasks]
coverage = { script = "unogenerator.poethepoet:coverage" }
documentation = { script = "unogenerator.poethepoet:documentation" }
test = { script = "unogenerator.poethepoet:test" }
release = { script = "unogenerator.poethepoet:release" }
reusing = { script = "unogenerator.poethepoet:reusing" }
translate = { script = "unogenerator.poethepoet:translate" }
docker = { script = "unogenerator.poethepoet:docker" }
docker_build = { script = "unogenerator.poethepoet:docker_build" }
[build-system]
requires = ["poetry-core>=2.0.0"]
build-backend = "poetry.core.masonry.api"