-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
41 lines (36 loc) · 939 Bytes
/
setup.cfg
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
41
[metadata]
name = branch-detective
version = 1.1.0
description = Detect which commits are absent between branches.
long_description = file: README.md
long_description_content_type = text/markdown; charset=UTF-8
license_file = LICENSE
author = Jason C. McDonald
author_email = [email protected]
url = https://github.com/codemouse92/branch-detective
project_urls =
Bug Reports = https://github.com/codemouse92/branch-detective/issues
Source = https://github.com/codemouse92/branch-detective
keywords = utility git tool development
[options]
package_dir =
= src
packages = find:
include_package_data = True
install_requires =
click
GitPython
python_version = >=3.7, <4
[options.packages.find]
where = src
exclude = tests
[options.extras_require]
test =
pytest
coverage
tox
[options.entry_points]
console_scripts =
branch-detective = branch_detective.__main__:main
[flake8]
max-line-length = 120