-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
37 lines (33 loc) · 1.1 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
[tool.poetry]
name = "requests-asserts"
version = "0.1.3"
description = "The library to help test your HTTP requests using unittests"
authors = ["Adrian Dankiv <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/ADR-007/requests-asserts"
keywords = ["mock", "requests", "unittests", "tests", "http"]
classifiers = [
"Development Status :: 4 - Beta",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Testing :: Mocking",
"Topic :: Software Development :: Testing :: Unit",
"Topic :: Internet :: WWW/HTTP",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
]
[tool.poetry.dependencies]
python = "^3.6"
requests = "^2.22"
responses = "^0.14.0"
[tool.poetry.dev-dependencies]
coverage = {version = "^5.5", extras = ["toml"]}
coveralls = "^3.2.0"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.coverage.run]
relative_files = true