forked from dooit-org/dooit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (29 loc) · 747 Bytes
/
Copy pathpyproject.toml
File metadata and controls
33 lines (29 loc) · 747 Bytes
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
[tool.poetry]
name = "dooit"
version = "2.2.0"
description = "A TUI todo manager"
authors = ["kraanzu <kraanzu@gmail.com>"]
maintainers = ["kraanzu <kraanzu@gmail.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/kraanzu/dooit"
repository = "https://github.com/kraanzu/dooit"
exclude = ["imgs"]
[tool.poetry.dependencies]
python = "^3.8"
pyperclip = "^1.8.2"
PyYAML = "^6.0"
tzlocal = "2.1"
appdirs = "^1.4.4"
textual = "^0.47.1"
python-dateutil = "^2.8.2"
[tool.poetry.group.dev.dependencies]
ruff = "^0.0.261"
black = "^23.3.0"
pre-commit = "^3.2.2"
textual-dev = "^1.1.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
dooit = 'dooit.__main__:main'