-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
34 lines (30 loc) · 871 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 = "todoer"
version = "0.1.1"
description = "Removes todo that match a certain regex."
authors = ["Max Wittig <[email protected]>"]
readme = "README.md"
repository = "https://github.com/max-wittig/todoer"
keywords = ["gitlab", "todo"]
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Topic :: Software Development",
"Topic :: Utilities"
]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.6"
loguru = "^0.4.1"
python-gitlab = "^2.1.0"
[tool.poetry.dev-dependencies]
black = "^19.10b0"
[tool.poetry.scripts]
todoer = "todoer.__main__:main"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"