-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.cfg
68 lines (61 loc) · 1.61 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
[metadata]
name = grocker
version = 8.3.dev0
author = Polyconseil
author_email = [email protected]
url = http://github.com/polyconseil/grocker
description = Docker image builder
long_description = file: README.rst
long_description_content_type = text/x-rst
license = BSD 3-Clause License
keywords = docker, build, packaging
classifiers =
Development Status :: 5 - Production/Stable
Environment :: Console
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Natural Language :: English
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Topic :: Software Development :: Build Tools
Topic :: System :: Software Distribution
[options]
zip_safe = True
include_package_data = True
packages = find:
package_dir =
= src
python_requires = >=3.8
install_requires =
click
docker>=3.0.0
Jinja2
pip>=10
pyyaml>=3.11
packaging
[options.packages.find]
where = src
[options.entry_points]
console_scripts =
grocker = grocker.__main__:main
[flake8]
max-line-length = 120
exclude = build,dist,venv
max-complexity = 10
ignore = B404,C815,D10,W503
# B404: Import subprocess
# C815: Missing trailing comma in Python 3.5+
# D10x: Missing docstrings
# W503: Line break before binary operator (we use W504: Line break after binary operator)
[isort]
force_single_line = 1
line_length = 120
multi_line_output = 3
known_first_party = grocker
[zest.releaser]
create-wheel = yes
[distutils]
index-servers = pypi