-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (26 loc) · 806 Bytes
/
pyproject.toml
File metadata and controls
30 lines (26 loc) · 806 Bytes
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
[tool.poetry]
name = "git-labeler"
version = "0.1.2"
description = "Apply, change, remove labels on multiple or single repos in one go"
authors = ["John Stilia <stilia.johny@gmail.com>"]
license = "GPL-3"
keywords = ["git", "multi-label", "label", "automation", "github"," github-api"]
readme = "README.md"
include = [
"LICENSE.md",
"README.md",
]
homepage = "https://stiliajohny.github.io/python-git-labeler "
repository = "https://github.com/stiliajohny/python-git-labeler.git "
[tool.poetry.dependencies]
python = "^3.10"
GitPython = "^3.1.27"
pyfiglet = "^0.8.post1"
pyaml = "^21.10.1"
requests = "^2.27.1"
[tool.poetry.dev-dependencies]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
git-labeler= "git_labeler.script:main"