forked from Pierre-Sassoulas/centralized-pre-commit-conf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
58 lines (53 loc) · 1.36 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
[metadata]
author = Pierre Sassoulas
author_email = [email protected]
long_description = file: README.md
long_description_content_type = text/markdown
name = centralized-pre-commit-conf
version = 0.5.0
description = Easily install and update centralized pre-commit hooks and their configuration files in decentralized repositories
classifiers =
Operating System :: OS Independent
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Development Status :: 5 - Production/Stable
url = https://github.com/Pierre-Sassoulas/centralized-pre-commit-conf
[options]
packages = find_namespace:
package_dir =
install_requires =
setuptools>=45.1
wheel>=0.34
colorama
confuse
pre-commit>=1.16
requests
tests_require =
pytest-cov
pytest-vcr
python-coveralls
coverage
coveralls
pylint==2.12.2
zip_safe = True
[options.entry_points]
console_scripts =
pre-commit-conf=centralized_pre_commit_conf.main:run
[options.extras_require]
test =
pytest-cov
pytest-vcr
coverage
python-coveralls
coveralls
pylint==2.12.2
[options.package_data]
centralized_pre_commit_conf =
*.cfg
*.yaml
*.pylintrc
*.flake8