forked from schemathesis/schemathesis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
78 lines (71 loc) · 2.48 KB
/
pyproject.toml
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
[tool.poetry]
name = "schemathesis"
version = "2.3.0"
description = "Hypothesis strategies for Open API / Swagger and GraphQL schemas"
keywords = ["pytest", "hypothesis", "openapi", "swagger", "graphql", "testing"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Framework :: Pytest",
"Framework :: Hypothesis",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Testing",
]
authors = ["Dmitry Dygalo <dmitry.dygalo@kiwi.com>"]
readme = "README.rst"
repository = "https://github.com/kiwicom/schemathesis"
license = "MIT"
[tool.poetry.dependencies]
python = "^3.6"
attrs = "^19.1"
hypothesis = ">=5.15,<6.0"
hypothesis_jsonschema = ">=0.17.0,<1.0"
hypothesis_graphql = ">=0.3"
jsonschema = "^3.0.0"
pytest = ">4.6.4"
pyyaml = "^5.1"
pytest-subtests = ">=0.2.1,<1.0"
requests = "^2.22"
click = "^7.0"
importlib_metadata = { version = "^1.1", python = "<3.8" }
werkzeug = ">0.16.0"
junit-xml = "^1.9"
starlette = "^0.13.2"
[tool.poetry.dev-dependencies]
coverage = "^5"
pytest = ">4.6.4"
aiohttp = "^3.6"
graphene = "^3.0b3"
graphql-server-core = { git = "https://github.com/graphql-python/graphql-server-core.git", rev = "e8f3a89a64d75e8668f5f4762b87d34a1840d926" }
pytest-mock = "^1.11.0"
pytest-asyncio = "^0.11.0"
pytest-xdist = "^1.30"
typing_extensions = "^3.7"
flask = "^1.1"
fastapi = "^0.58.0"
sphinx = "^3.0.3"
[tool.poetry.plugins]
pytest11 = {schemathesis = "schemathesis.extra.pytest_plugin"}
[tool.poetry.scripts]
schemathesis = "schemathesis.cli:schemathesis"
[tool.black]
line-length = 120
target_version = ["py37"]
[tool.isort]
# config compatible with Black
line_length = 120
multi_line_output = 3
default_section = "THIRDPARTY"
include_trailing_comma = true
known_first_party = "schemathesis"
known_third_party = ["_pytest", "aiohttp", "attr", "click", "fastapi", "flask", "graphene", "graphql", "graphql_server", "hypothesis", "hypothesis_graphql", "hypothesis_jsonschema", "jsonschema", "junit_xml", "packaging", "pytest", "pytest_subtests", "requests", "schemathesis", "starlette", "urllib3", "werkzeug", "yaml"]
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"