forked from taverntesting/tavern
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
67 lines (58 loc) · 1.41 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
[metadata]
name = tavern
description = Simple testing of RESTful APIs
version = attr: tavern.__version__
long_description = file: README.rst
author = Michael Boulton
author_email = [email protected]
url = https://taverntesting.github.io/
license = MIT
license_file = LICENSE
keywords =
testing
pytest
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
Framework :: Pytest
Programming Language :: Python :: 2
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3
Programming Language :: Python :: 3.4
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Topic :: Utilities
Topic :: Software Development :: Testing
License :: OSI Approved :: MIT License
[options]
packages = find:
include_package_data = True
install_requires =
pyyaml
pykwalify>=1.6.1
requests
pyjwt
python-box
future
contextlib2
stevedore
backports.functools_lru_cache
paho-mqtt==1.3.1
jmespath
pytest>=3.6.0,<4.6.0
[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
[bdist_wheel]
universal = 1
[aliases]
test=pytest