forked from taverntesting/tavern
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
62 lines (54 loc) · 1.41 KB
/
setup.cfg
File metadata and controls
62 lines (54 loc) · 1.41 KB
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
[metadata]
name = tavern
description = Simple testing of RESTful APIs
version = attr: tavern.__version__
long_description = file: README.rst
author = Michael Boulton
author_email = boulton@zoetrope.io
url = https://taverntesting.github.io/
project_urls =
Documentation = https://tavern.readthedocs.io/en/latest/
Source = https://github.com/taverntesting/tavern
license = MIT
license_file = LICENSE
keywords =
testing
pytest
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
Framework :: Pytest
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Topic :: Utilities
Topic :: Software Development :: Testing
License :: OSI Approved :: MIT License
[options]
packages = find:
include_package_data = True
install_requires =
PyYAML>=5.3.1,<7
pykwalify>=1.8.0,<2
requests>=2.22.0,<3
pyjwt>=2.4.0,<3
paho-mqtt>=1.3.1,<=1.5.1
jmespath<1
pytest>=6.2,<8
python-box>4,<6
stevedore
[options.packages.find]
exclude =
tests
[options.entry_points]
console_scripts =
tavern-ci = tavern.entry:main
pytest11 =
tavern = tavern.testutils.pytesthook
tavern_http =
requests = tavern._plugins.rest.tavernhook:TavernRestPlugin
tavern_mqtt =
paho-mqtt = tavern._plugins.mqtt.tavernhook
[aliases]
test=pytest