2019-07-12 23:55:11 +08:00
|
|
|
[tool.poetry]
|
|
|
|
name = "httprunner"
|
2022-04-24 20:18:29 +08:00
|
|
|
version = "3.1.11"
|
2019-07-12 23:55:11 +08:00
|
|
|
description = "One-stop solution for HTTP(S) testing."
|
|
|
|
license = "Apache-2.0"
|
2022-03-21 12:08:19 +08:00
|
|
|
readme = "docs/README.md"
|
2019-07-16 18:56:52 +08:00
|
|
|
authors = ["debugtalk <debugtalk@gmail.com>"]
|
2019-07-12 23:55:11 +08:00
|
|
|
|
2019-12-24 20:28:58 +08:00
|
|
|
homepage = "https://github.com/httprunner/httprunner"
|
|
|
|
repository = "https://github.com/httprunner/httprunner"
|
2019-11-02 00:06:24 +08:00
|
|
|
documentation = "https://docs.httprunner.org"
|
2019-07-12 23:55:11 +08:00
|
|
|
|
|
|
|
keywords = ["HTTP", "api", "test", "requests", "locustio"]
|
|
|
|
|
|
|
|
classifiers = [
|
2019-10-28 13:01:58 +08:00
|
|
|
"Development Status :: 5 - Production/Stable",
|
|
|
|
"Topic :: Software Development :: Testing",
|
|
|
|
"Topic :: Software Development :: Quality Assurance",
|
|
|
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
2019-10-28 13:17:00 +08:00
|
|
|
"Operating System :: MacOS",
|
|
|
|
"Operating System :: POSIX :: Linux",
|
|
|
|
"Operating System :: Microsoft :: Windows",
|
2019-10-28 13:01:58 +08:00
|
|
|
"Programming Language :: Python :: 3.7",
|
2022-03-21 15:15:03 +08:00
|
|
|
"Programming Language :: Python :: 3.8",
|
|
|
|
"Programming Language :: Python :: 3.9",
|
|
|
|
"Programming Language :: Python :: 3.10"
|
2019-07-12 23:55:11 +08:00
|
|
|
]
|
|
|
|
|
2019-12-24 20:28:58 +08:00
|
|
|
include = ["docs/CHANGELOG.md"]
|
2019-07-12 23:55:11 +08:00
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
2022-03-21 15:15:03 +08:00
|
|
|
python = "^3.7"
|
2019-10-25 23:42:02 +08:00
|
|
|
requests = "^2.22.0"
|
2021-11-15 22:09:32 +08:00
|
|
|
pyyaml = "^5.4.1"
|
2022-03-21 15:12:02 +08:00
|
|
|
pydantic = "~1.8" # >=1.8.0 <1.9.0
|
2020-03-07 10:43:53 +08:00
|
|
|
loguru = "^0.4.1"
|
2020-04-19 17:37:23 +08:00
|
|
|
jmespath = "^0.9.5"
|
2022-03-21 15:53:01 +08:00
|
|
|
pytest = "^7.1.1"
|
|
|
|
pytest-html = "^3.1.1"
|
2020-06-04 11:12:47 +08:00
|
|
|
sentry-sdk = "^0.14.4"
|
2020-05-28 16:51:00 +08:00
|
|
|
allure-pytest = {version = "^2.8.16", optional = true}
|
2020-05-28 18:21:33 +08:00
|
|
|
requests-toolbelt = {version = "^0.9.1", optional = true}
|
|
|
|
filetype = {version = "^1.0.7", optional = true}
|
2020-06-18 18:05:47 +08:00
|
|
|
locust = {version = "^1.0.3", optional = true}
|
2021-06-27 00:02:34 +08:00
|
|
|
Brotli = "^1.0.9"
|
2022-03-21 15:33:36 +08:00
|
|
|
jinja2 = "^3.0.3"
|
2022-04-24 20:18:29 +08:00
|
|
|
black = "^22.3.0"
|
2020-05-28 18:21:33 +08:00
|
|
|
|
|
|
|
[tool.poetry.extras]
|
2020-06-07 17:14:18 +08:00
|
|
|
allure = ["allure-pytest"] # pip install "httprunner[allure]", poetry install -E allure
|
|
|
|
upload = ["requests-toolbelt", "filetype"] # pip install "httprunner[upload]", poetry install -E upload
|
2020-06-18 18:05:47 +08:00
|
|
|
locust = ["locust"] # pip install "httprunner[locust]", poetry install -E locust
|
2019-07-12 23:55:11 +08:00
|
|
|
|
|
|
|
[tool.poetry.dev-dependencies]
|
2019-10-25 23:42:02 +08:00
|
|
|
coverage = "^4.5.4"
|
2021-11-15 20:19:47 +08:00
|
|
|
fastapi = "^0.70.0"
|
2022-03-21 15:57:45 +08:00
|
|
|
uvicorn = "^0.17.6"
|
2019-07-12 23:55:11 +08:00
|
|
|
|
|
|
|
[tool.poetry.scripts]
|
2019-10-25 15:42:47 +08:00
|
|
|
httprunner = "httprunner.cli:main"
|
2020-05-15 15:58:20 +08:00
|
|
|
hrun = "httprunner.cli:main_hrun_alias"
|
|
|
|
hmake = "httprunner.cli:main_make_alias"
|
2020-05-15 16:02:50 +08:00
|
|
|
har2case = "httprunner.cli:main_har2case_alias"
|
2020-06-18 18:05:47 +08:00
|
|
|
locusts = "httprunner.ext.locust:main_locusts"
|
2019-07-12 23:55:11 +08:00
|
|
|
|
2019-07-16 22:31:20 +08:00
|
|
|
[build-system]
|
2019-12-13 18:03:45 +08:00
|
|
|
requires = ["poetry>=1.0.0"]
|
2019-07-16 22:31:20 +08:00
|
|
|
build-backend = "poetry.masonry.api"
|
2021-11-15 22:09:32 +08:00
|
|
|
|
|
|
|
[[tool.poetry.source]]
|
|
|
|
name = "tsinghua"
|
|
|
|
url = "https://pypi.tuna.tsinghua.edu.cn/simple/"
|