-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
47 lines (44 loc) · 1.34 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
[tool.poetry]
name = "pytest-asgi-server"
version = "0.2.4"
description = "Convenient ASGI client/server fixtures for Pytest"
authors = ["Gary Tyler <mail@garytyler.com>"]
license = "MIT"
readme = 'README.md'
repository = "https://github.com/garytyler/pytest-asgi-server"
homepage = "https://github.com/garytyler/pytest-asgi-server"
packages = [{ include = "pytest_asgi_server" }]
classifiers = [
"Framework :: Pytest",
"Framework :: tox",
"Framework :: AsyncIO",
"Environment :: Plugins",
"Environment :: Web Environment",
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
"Topic :: Software Development :: Testing",
"Topic :: System :: Networking",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
]
[tool.poetry.dependencies]
python = ">=3.8,<4.0"
pytest = ">=5.4.1"
pytest-xprocess = ">=0.13.1"
pytest-asyncio = ">=0.10.0"
httpx = ">=0.12.1"
asgi-lifespan = ">=1.0.0"
uvicorn = ">=0.11.3"
importlib_metadata = { version = "^1.6.0", python = ">=3.8" }
websockets = { version = "^8", python = ">=3.8" }
[tool.poetry.dev-dependencies]
black = "^20.8b1"
flake8 = "^3.8.4"
mypy = "^0.790"
isort = "^5.6.4"
starlette = ">=0.13.3"
pytest-cov = ">=2.10.1"
pre-commit = "^2.9.3"
[build-system]
requires = ["poetry >= 1, <1.1"]
build-backend = "poetry.masonry.api"