-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (45 loc) · 1.1 KB
/
pyproject.toml
File metadata and controls
50 lines (45 loc) · 1.1 KB
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
48
49
50
[build-system]
requires = [
"poetry==1.0.9"
]
build-backend = "poetry.masonry.api"
[tool.poetry]
authors = [
"Kevin Amado <kamadorueda@gmail.com>",
]
classifiers = [
"Development Status :: 6 - Mature",
"Framework :: AsyncIO",
"Topic :: Software Development :: Libraries",
"Typing :: Typed",
]
description = "High performance functions to work with the async IO"
documentation = "https://fluidattacks.github.io/aioextensions"
homepage = "https://fluidattacks.github.io/aioextensions"
include = [
"test/**/*",
]
license = "MIT"
name = "aioextensions"
packages = [
{ include = "aioextensions", from = "src" },
]
readme = "./README.md"
repository = "https://github.com/fluidattacks/aioextensions"
version = "1.0.0"
[tool.poetry.dependencies]
python = "^3.6"
uvloop = { version = "*", optional = true }
[tool.poetry.dev-dependencies]
bandit = "1.6.2"
mypy = "0.782"
prospector = "1.3.0"
pdoc3 = "0.8.4"
pydeps = "1.9.4"
pytest = "5.4.3"
pytest-asyncio = "0.14.0"
pytest-cov = "2.10.0"
[tool.poetry.extras]
full = ["uvloop"]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/fluidattacks/aioextensions/issues"