-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
58 lines (51 loc) · 1.29 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[build-system]
requires = [
"setuptools>=42",
"wheel"
]
build-backend = "setuptools.build_meta"
[project]
requires-python = ">=3.9"
dependencies = [
"aioredis >= 2.0.0, < 2.1.0",
"jsonpickle >= 3.0.0, < 3.1.0",
"tomlkit >= 0.11.0, < 0.12.0",
"typer >= 0.4.0, < 0.5.0",
]
name = "aiotaskq"
version = "0.0.13"
readme = "README.md"
description = "A simple asynchronous task queue"
authors = [
{name = "Imran Ariffin", email = "ariffin.imran@gmail.com"},
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
license = { file = "LICENSE" }
[project.optional-dependencies]
dev = [
"black >= 22.2.0, < 23.0.0",
"coverage >= 6.4.0, < 6.5.0",
"mypy >= 0.931, < 1.0",
"mypy-extensions >= 0.4.0, < 0.5.0",
"pytest-asyncio >= 0.19.0, < 0.20.0",
"pylint >= 2.14.0, < 2.15.0",
"pytest >= 7.1.0, < 7.2.0",
"typing_extensions >= 4.1.1, < 4.2.0",
]
[project.urls]
"Bug Tracker" = "https://github.com/imranariffin/aiotaskq/issues"
[project.scripts]
aiotaskq = "aiotaskq.__main__:cli"
[tool.setuptools.packages.find]
where = ["src"]
include = ["aiotaskq*"]
[tool.black]
line-length = 100
[tool.pytest.ini_options]
markers = [
"lowlevel: Marks tests as low-level",
]