forked from smarkets/marge-bot
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
33 lines (29 loc) · 933 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
[tool.poetry]
name = "marge"
version = "0.15.0"
description = "Marge-bot is a merge-bot for GitLab that, beside other goodies, implements [the Not Rocket Science Rule Of Software Engineering](http://graydon2.dreamwidth.org/1597.html)."
license = "BSD-3-Clause"
authors = ["Infrastructure <infrastructure@smarkets.com>"]
readme = "README.md"
repository = "https://github.com/hiboxsystems/marge-bot"
keywords = ["merge request", "gitlab"]
[tool.poetry.dependencies]
python = "^3.9"
ConfigArgParse = "^1.3"
maya = "^0.6.1"
PyYAML = "~5.3.1"
requests = "^2.25.1"
retry2 = "^0.9.2"
tzdata = "^2022.7"
[tool.poetry.group.dev.dependencies]
pytest = "~7"
pytest-cov = "^4.0.0"
pylint = "^3.0.3"
flake8 = "^7"
pendulum = {extras = ["test"], version = "^3.0.0"}
[tool.poetry.scripts]
marge = "marge.__main__:run"
"marge.app" = "marge.__main__:run"
[build-system]
requires = ["poetry-core>=2.0.0"]
build-backend = "poetry.core.masonry.api"