-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
pyproject.toml
50 lines (38 loc) · 1 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
48
49
50
################### BLACK ###################
[tool.black]
line-length = 100
################### ISORT ###################
[tool.isort]
not_skip = "__init__.py"
force_grid_wrap = 0
include_trailing_comma = true
line_length = 100
multi_line_output = 3
order_by_type = "1"
known_first_party = ["todo"]
known_third_party = []
sections = ["FUTURE", "STDLIB", "THIRDPARTY", "CORE", "FIRSTPARTY", "LOCALFOLDER"]
################### POETRY ###################
[tool.poetry]
name = "td-cli"
version = "1.0.0"
description = "A command line todo manager"
authors = [
"Darri Steinn Konn Konradsson <darrikonn@gmail.com>"
]
readme = "README.md"
repository = "https://github.com/darrikonn/td-cli"
homepage = "https://github.com/darrikonn/td-cli"
keywords = ["td-cli"]
[tool.poetry.dependencies]
python = "^3.11"
[tool.poetry.group.dev.dependencies]
mypy = "^1.7.1"
black = "^24.3.0"
isort = "^5.12.0"
ipdb = "^0.13.13"
ipython = "^8.17.2"
flake8 = "^6.1.0"
wheel = "^0.42.0"
twine = "^4.0.2"
types-setuptools = "^68.2.0.2"