-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (33 loc) · 752 Bytes
/
pyproject.toml
File metadata and controls
40 lines (33 loc) · 752 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
31
32
33
34
35
36
37
38
39
40
[project]
name = "git-bbb"
description = "⚡ Brisk Blame Browser for Git"
version = "0.0.10"
dependencies = [
"gitpython",
"Pygments",
"prompt-toolkit",
"click~=8.1"
]
requires-python = ">=3.7"
license = {file = "LICENSE"}
readme = "README.md"
maintainers = [
{name = "Błażej Michalik", email = "code.mrmino@gmail.com"},
]
[project.urls]
repository = "https://github.com/MrMino/git-bbb"
changelog = "https://github.com/MrMino/git-bbb/blob/master/CHANGELOG.md"
[project.optional-dependencies]
test = [
"pytest",
]
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[options]
[project.scripts]
git-bbb = "git_bbb.cli:git_bbb"
[options.extras_require]
test = ["pytest"]
[tool.black]
line-length = 80