-
Notifications
You must be signed in to change notification settings - Fork 15
/
pyproject.toml
36 lines (32 loc) · 927 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 = "asyncio-gevent"
version = "0.2.3"
description = "asyncio & gevent in harmony"
authors = ["Frédérique Mittelstaedt <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/gfmio/asyncio-gevent"
repository = "https://github.com/gfmio/asyncio-gevent"
documentation = "https://github.com/gfmio/asyncio-gevent"
keywords = ["asyncio", "gevent"]
include = ["NOTICE"]
[tool.poetry.dependencies]
python = "^3.7"
gevent = [
{version = "*", python = ">=3.7, <3.10"},
{version = "^21.12.0", python = ">=3.10, <3.11"},
{version = "^22.10.2", python = "^3.11"}
]
[tool.poetry.dev-dependencies]
black = "^22.10.0"
flake8 = "^5.0.4"
mypy = "^0.991"
pydocstyle = "^6.1.1"
pytest = "^7.2.0"
pytest-cov = "^4.0.0"
reorder-python-imports = "^3.9.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.mypy]
ignore_missing_imports = true