-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
37 lines (32 loc) · 962 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
35
36
37
[tool.poetry]
name = "devpair"
version = "1.1.18"
description = "Pair script that manage a pair programming session using git."
authors = ["raphael.kieling <[email protected]>"]
license = "MIT"
readme = "README.md"
packages = [{include = "app"}]
homepage = "https://github.com/raphaelkieling/devpair"
repository = "https://github.com/raphaelkieling/devpair"
keywords = ["devpair", "pair programming", "mob programming", "pair"]
include = ["LICENSE"]
[tool.poetry.dependencies]
python = "^3.7"
click = "^8.0.4"
loguru = "^0.6.0"
GitPython = "^3.1.29"
python-dateutil = "^2.8.2"
cowsay = "^5.0"
coveralls = "^3.3.1"
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.0"
pytest-cov = "^4.0.0"
pre-commit = "^2.20.0"
freezegun = "^1.2.2"
wily = "^1.24.0"
[build-system]
requires = ["setuptools >= 40.6.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.poetry.scripts]
devpair = "app:main.exec_cli"
devtest = { callable = "app:main.exec_cli" }