httprunner/pyproject.toml

73 lines
2.3 KiB
TOML
Raw Permalink Normal View History

[tool.poetry]
name = "httprunner"
version = "3.1.11"
description = "One-stop solution for HTTP(S) testing."
license = "Apache-2.0"
2022-03-21 12:08:19 +08:00
readme = "docs/README.md"
authors = ["debugtalk <debugtalk@gmail.com>"]
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"
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",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
2019-10-28 13:01:58 +08:00
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10"
]
2019-12-24 20:28:58 +08:00
include = ["docs/CHANGELOG.md"]
[tool.poetry.dependencies]
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"
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"
allure-pytest = {version = "^2.8.16", optional = true}
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"
jinja2 = "^3.0.3"
black = "^22.3.0"
[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
[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"
uvicorn = "^0.17.6"
[tool.poetry.scripts]
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"
[build-system]
2019-12-13 18:03:45 +08:00
requires = ["poetry>=1.0.0"]
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/"