-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
44 lines (37 loc) · 1002 Bytes
/
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
[tool.poetry]
name = "cade-task"
version = "0.4.2"
description = "A loose wrapper around reminders-cli"
readme = "README.md"
authors = ["Cade Ekblad-Frank <[email protected]>"]
[tool.poetry.urls]
Repository = "https://github.com/cadeef/cade-task"
Documentation = "https://task.cade.pro"
[tool.poetry.scripts]
task = 'cade_task.cli:app'
[tool.poetry.dependencies]
python = "^3.11"
typer = {extras = ["all"], version = "^0.9.0"}
[tool.poetry.group.dev.dependencies]
pytest-cov = "^4.1.0"
pytest = "^7.4.0"
black = "^23.7.0"
ruff = "^0.0.278"
mypy = "^1.4.1"
devtools = "^0.11.0"
pygments = "^2.15.1"
pytest-mock = "^3.11.1"
[tool.poetry.group.docs.dependencies]
pygments = "^2.15.1"
sphinx = "^7.1.1"
myst-parser = "^2.0.0"
sphinx-press-theme = "^0.8.0"
sphinx-copybutton = "^0.5.2"
sphinx-autodoc-typehints = "^1.24.0"
sphinx-autobuild = "^2021.3.14"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.masonry.api"
[tool.ruff]
# https://beta.ruff.rs/docs/rules/
select = ["E", "F", "I"]