-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
38 lines (35 loc) · 1.04 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
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "blacksheep-context"
version = "0.1.0"
description = "Middleware for blacksheep that allows you to store and access the context data of a request."
authors = ["Nikita Tomchik <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/Cdayz/blacksheep-context"
repository = "https://github.com/Cdayz/blacksheep-context"
keywords = ["blacksheep", "context", "middleware", "blacksheep-context"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
]
include = [
"LICENSE",
]
exclude = []
[tool.poetry.dependencies]
python = "^3.7"
blacksheep = ">=1.0.7"
[tool.poetry.dev-dependencies]
pytest = "^6.2.5"
pytest-xdist = "^2.5.0"
pytest-cov = "^2.12.1"
tox = "^3.24.4"
isort = "^5.10.1"
flake8 = "^3.9.2"
pytest-asyncio = "^0.15.1"