-
-
Notifications
You must be signed in to change notification settings - Fork 76
/
setup.cfg
89 lines (74 loc) · 2.72 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
#
# setup.cfg file for cleancut/green
#
# https://setuptools.pypa.io/en/latest/userguide/declarative_config.html
#
[metadata]
name = green
summary = Green is a clean, colorful, fast python test runner.
author = Nathan Stocks
maintainer = Nathan Stocks
author_email = [email protected]
license = 'MIT'
version = file: green/VERSION
long_description = file:README-pypi.rst
long_description_content_type = text/x-rst; charset=UTF-8
description_file = file:README.md
description_content_type = text/markdown; charset=UTF-8
url = https://github.com/CleanCut/green
classifier =
Development Status :: 5 - Production/Stable
Environment :: Console
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Natural Language :: English
Operating System :: MacOS :: MacOS X
Operating System :: Microsoft :: Windows
Operating System :: POSIX
Operating System :: POSIX :: Linux
Operating System :: Unix
Programming Language :: Python
Programming Language :: Python :: 3
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
Programming Language :: Python :: 3 :: Only
Topic :: Software Development :: Libraries
Topic :: Software Development :: Quality Assurance
Topic :: Software Development :: Testing
Topic :: Utilities
keywords =
nose, nose2, trial, pytest, py.test, tox, green,
tdd, test, tests, functional, system, unit, unittest,
color, tabular, clean, red, rednose, regression, runner,
integration,smoke, white, black, box, incremental, end,
end-to-end, sanity, acceptance, load, stress, performance,
usability, install, uninstall, recovery, security,
comparison, alpha, beta, non-functional, destructive,
accessibility, internationalization, i18n, localization, l10n,
development, a/b, concurrent, conformance, verification,
validation, quality, assurance, ad-hoc, agile, api,
automated, all, pairs, pairwise, boundary, value, branch,
browser, condition, coverage, dynamic, exploratory,
equivalence, partitioning, fuzz, gui, glass, gorilla,
interface, keyword, penetration, retesting, risk, based,
scalability, soak, volume, vulnerability
test_suite='green.test'
[options]
# Known bug in python 3.12.1 breaks green when skipping tests.
#
python_requires = >=3.8, !=3.12.1
install_requires = file:requirements.txt
include_package_data = True
packages = find:
[options.extras_require]
dev = file:requirements-dev.txt
[options.package_data]
green = VERSION, shell_completion.sh
[options.entry_points]
console_scripts =
green = green.cmdline:main
[bdist_wheel]
universal = 1