-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
34 lines (27 loc) · 914 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
[tool.poetry]
name = "todocom"
version = "0.2.9"
description = "CLI to retrieve a list of all TODO comments in the code"
authors = ["avivfaraj <avivfaraj4@gmail.com>"]
license = "GPLv3"
readme = "README.md"
homepage = "https://github.com/avivfaraj/todocom"
repository = "https://github.com/avivfaraj/todocom"
documentation = "https://github.com/avivfaraj/todocom"
keywords = ["todo", "todo-list", "todo-comments", "cli"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent"
]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/avivfaraj/todocom/issues"
[tool.poetry.dependencies]
python = "^3.10"
[tool.poetry.dev-dependencies]
pytest = "7.2.0"
[tool.poetry.scripts]
todo = 'todocom.cli:main'
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"