blob: 1060209686a8f95ab355a10c493ce9fc1a9f9f4b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# $NetBSD: test.py,v 1.1 2022/08/25 19:51:59 rillig Exp $
#
# Fake implementation of setuptools.command.test.
#
# https://github.com/pypa/setuptools/blob/main/setuptools/command/test.py
# used by pkgsrc package www/py-pook 1.0.2
from setuptools import Command
class test(Command):
pass
|