-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (29 loc) · 819 Bytes
/
pyproject.toml
File metadata and controls
32 lines (29 loc) · 819 Bytes
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
[tool.poetry]
name = "asgi-testclient"
version = "0.3.1"
description = "Test Clietn for ASGI web applications"
authors = ["Ordanis Sanchez <ordanisanchez@gmail.com>"]
homepage = "https://github.com/oldani/asgi-testClient"
repository = "https://github.com/oldani/asgi-testClient"
license = "MIT"
readme = "README.md"
classifiers = [
"Framework :: AsyncIO",
"Topic :: Software Development :: Testing",
"Programming Language :: Python :: 3.6",
"Development Status :: 3 - Alpha"
]
[tool.poetry.dependencies]
python = "^3.6"
[tool.poetry.dev-dependencies]
pytest = "^4.3"
pytest-cov = "^2.6"
pytest-mypy = "^0.3.2"
flake8 = "^3.7"
black = "18.9b0"
starlette = "=0.12.9"
pytest-asyncio = "^0.10.0"
python-multipart = "^0.0.5"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"