-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
84 lines (78 loc) · 1.58 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
[metadata]
name = gitorade
version = 1.0.8
description = git commit on steroids
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/marouenes/gitorade
author = Marouane Skandaji
author_email = [email protected]
license = MIT
license_file = LICENSE
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
Intended Audience :: Information Technology
License :: OSI Approved :: MIT License
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: Implementation :: CPython
project_urls =
Source Code = https://github.com/marouenes/gitorade
Bug Tracker = https://github.com/marouenes/gitorade/issues
[options]
py_modules = gitorade
python_requires = >=3.7
[options.packages.find]
exclude =
tests*
testing*
Makefile
[options.entry_points]
console_scripts =
gitorade = gitorade:main
[options.extras_require]
build =
build
twine
wheel
dev =
PyGitHub
black
build
coverage
isort
pre-commit
pylint
pytest
pytest-cov
pytest-mock
six
sphinx
sphinx-rtd-theme
twine
wheel
docs =
sphinx
sphinx-rtd-theme
qa =
black
isort
pre-commit
pylint
six
tests =
coverage
pytest
pytest-cov
pytest-mock
[bdist_wheel]
universal = True
[isort]
multi_line_output = 3
include_trailing_comma = True
force_grid_wrap = 0
use_parentheses = True
line_length = 99