ttrun/setup.cfg
Monty Taylor 3df738d481 Update repo with latest hotness
Haven't touched this in a second. Update to python3 and stestr.
Drop py2, because sanity. Reformat with black because it's easy.
Replace tox with nox.

Add a gitreview and a zuul.yaml, since we live in Gerrit now.

Change-Id: I673a64e9680244ce9820c1683cd9a1d7906a6be3
2024-06-02 15:39:00 -07:00

41 lines
1.0 KiB
INI

[metadata]
name = ttrun
summary = Simple CLI to run testtools tests
description-file =
README.rst
author = Monty Taylor
author-email = mordred@inaugust.com
home-page = https://opendev.org/inaugust/ttrun
classifier =
Intended Audience :: Developers
License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Operating System :: POSIX :: Linux
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.4
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
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
[files]
packages =
ttrun
[entry_points]
console_scripts =
ttrun = ttrun.cmd:main
[wheel]
universal = 1
[flake8]
show-source = True
builtins = _
exclude=.venv,.git,.[nt]ox,dist,doc,*lib/python*,*egg,build
ignore=E501,W503