forked from Hemanthhari2000/todoforge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
47 lines (40 loc) · 804 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
45
46
47
[tool.poetry]
name = "todoforge"
version = "1.0.0"
description = ""
authors = ["Hemanth <hemanthhari2000@gmail.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.12"
typer = "^0.12.5"
pydantic = "^2.9.2"
black = "^24.10.0"
ruff = "^0.7.1"
pre-commit = "^4.0.1"
mypy = "^1.13.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.3"
coverage = "^7.6.4"
[tool.black]
skip-string-normalization = true
line-length = 88
extend-exclude = '''
/(
| .env
| .venv
| venv
| notebooks
)/
'''
[tool.ruff]
line-length = 88
exclude = [".env", ".venv", "venv", "notebooks"]
[tool.ruff.lint]
fixable = ["I"]
ignore = ["E501"]
select = ["E", "F", "I", "W"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
tdf = "todoforge.main:run"