-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
38 lines (32 loc) · 1.01 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
[tool.poetry]
name = "pydicts"
version = "0.17.0"
description = "Module to use dictionaries in various situations"
authors = ["turulomio <[email protected]>"]
license = "GPL-3.0"
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.9,<4"
tabulate = ">=0.9.0"
pylatex = ">=1.4.2"
isodate = ">=0.7.2"
colorama = ">=0.4.6"
[tool.poetry.group.dev.dependencies]
pytest = ">=8.3.3"
poethepoet = ">=0.29.0.1"
coverage = ">=7.6.4"
jupyter-book = ">=1.0.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poe.tasks]
release = { script = "pydicts.poethepoet:release" }
translate = { script = "pydicts.poethepoet:translate" }
test = "pytest"
coverage = { script = "pydicts.poethepoet:coverage" }
jupyter = { script = "pydicts.poethepoet:jupyter" }
currencies = { script = "pydicts.poethepoet:currencies" }
[project.urls]
homepage = "https://github.com/turulomio/pydicts/"
repository = "https://github.com/turulomio/pydicts/"
changelog = "https://github.com/turulomio/pydicts#changelog"