-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
55 lines (49 loc) · 1.11 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
51
52
53
54
55
[tool.black]
line-length = 160
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| migrations
| venv
| \.history
)/
'''
[tool.isort]
profile = "black"
skip = ["migrations", ".env", "venv", ".local", ".history", ".vscode"]
[tool.poetry]
name = "todonotifier"
version = "1.4.0"
description = "Library to setup automatic TODO Notifications in code"
authors = ["Ashutosh <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://pypi.org/project/todonotifier/"
repository = "https://github.com/ashu-tosh-kumar/todo_notifier"
documentation = "https://ashu-tosh-kumar.github.io/todo_notifier/"
exclude = ["tests", "sample_reports"]
[tool.poetry.dependencies]
python = "^3.9"
gitpython = "^3.1.0"
python-dateutil = "^2.8.2"
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.6.2"
black = "^24.3.0"
flake8 = "^7.0.0"
isort = "^5.13.2"
coverage = "^7.4.4"
pdoc = "^14.4.0"
pytest = "^8.1.1"
twine = "^6.0.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"