-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
47 lines (41 loc) · 1.51 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
[tool.poetry]
name = "unogenerator"
version = "1.0.0"
description = "Libreoffice files generator programmatically with python and Libreoffice server instances"
authors = ["turulomio <turulomio@yahoo.es>"]
license = "GPL-3.0 license"
readme = "README.md"
[tool.poetry.dependencies]
python = ">3.9,<4"
tqdm = ">=4.66.5"
humanize = ">=4.11.0"
colorama = ">=0.4.6"
polib = ">=1.2.0"
psutil = ">=6.0.0"
pydicts = ">=0.16.0"
[tool.poetry.group.dev.dependencies]
poetry = ">=1.8.3"
poethepoet = ">=0.29.0"
pytest = ">=8.3.3"
coverage = ">=7.6.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
unogenerator_demo='unogenerator.demo:demo'
unogenerator_cleaner='unogenerator.monitor:cleaner'
unogenerator_monitor='unogenerator.monitor:monitor'
unogenerator_translation='unogenerator.translation:translation'
[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" }
[project.urls]
homepage = "https://github.com/turulomio/unogenerator/"
repository = "https://github.com/turulomio/unogenerator/"
changelog = "https://github.com/turulomio/unogenerator#changelog"