forked from inn0le/sanic_sse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
36 lines (33 loc) · 944 Bytes
/
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
[tool.poetry]
name = "sanic_sse"
version = "0.3.1"
description = "Sanic Server-Sent Events extension"
authors = ["Innokenty Lebedev"]
repository = "https://github.com/inn0kenty/sanic_sse"
readme = "README.md"
license = "MIT"
classifiers = [
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Topic :: Internet :: WWW/HTTP",
"Framework :: AsyncIO",
]
[tool.poetry.dependencies]
python = "^3.5"
sanic = "*"
[tool.poetry.dev-dependencies]
pylint = "^2.6.0"
mypy = "^0.790"
pytest = "^6.1.2"
pytest-cov = "^2.10.1"
pytest-random-order = "^1.0.4"
pytest-asyncio = "^0.14.0"
bump2version = "^1.0.1"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"