
Recent tox releases have put us on a config treadmill. Avoid these issues entirely by using nox. Nox is a tox alternative that uses standard tools like pip and should be simpler to use for us. Change-Id: I24277512cf542bac7a8852d50009c6f08db7fa37
44 lines
1.2 KiB
INI
44 lines
1.2 KiB
INI
[metadata]
|
|
name = gerritlib
|
|
summary = Client library for accessing Gerrit.
|
|
description-file = README.rst
|
|
author = OpenDev Team
|
|
author-email = service-discuss@lists.opendev.org
|
|
maintainer = OpenDev Team
|
|
maintainer-email = service-discuss@lists.opendev.org
|
|
home-page = https://opendev.org/opendev/gerritlib
|
|
license = apache
|
|
classifier =
|
|
Topic :: Utilities
|
|
Intended Audience :: Developers
|
|
Intended Audience :: Information Technology
|
|
Intended Audience :: System Administrators
|
|
Environment :: Console
|
|
License :: OSI Approved :: Apache Software License
|
|
Operating System :: POSIX :: Linux
|
|
Programming Language :: Python
|
|
Programming Language :: Python :: 3
|
|
Programming Language :: Python :: 3.8
|
|
Programming Language :: Python :: 3.9
|
|
Programming Language :: Python :: 3.10
|
|
|
|
[files]
|
|
packages = gerritlib
|
|
|
|
[pbr]
|
|
warnerrors = True
|
|
|
|
[build_sphinx]
|
|
source-dir = doc/source
|
|
build-dir = doc/build
|
|
all_files = 1
|
|
|
|
[flake8]
|
|
show-source = True
|
|
# These are ignored intentionally in infra projects;
|
|
# please don't submit patches that solely correct them or enable them.
|
|
ignore =
|
|
E124,E125,E129,E252,E402,E741,H,W503,W504
|
|
N802 # N802 function name {} should be lowercase
|
|
exclude = .venv,.tox,.nox,dist,doc,build,*.egg
|