-
Notifications
You must be signed in to change notification settings - Fork 11
/
pyproject.toml
48 lines (42 loc) · 1.07 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
[tool.poetry]
name = "lasier"
version = "0.3.0"
description = "A sync/async circuit breaker implementation"
authors = ["LuizaLabs <[email protected]>"]
license = "MIT"
repository = "https://github.com/luizalabs/lasier"
keywords = ["circuit breaker", "sync", "async"]
readme = "README.md"
classifiers = [
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
]
[tool.poetry.dependencies]
python = "^3.8"
[tool.poetry.dev-dependencies]
black = "^22.3.0"
flake8 = "^4.0.1"
isort = "^5.10.1"
mypy = "^0.942"
pytest = "^7.1.1"
pytest-asyncio = "^0.18.3"
pytest-cov = "^3.0.0"
aiocache = "^0.11.1"
fakeredis = "^1.7.1"
bumpversion = "^0.6.0"
Django = "^4.0.4"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
asyncio_mode = "auto"
[tool.black]
skip-string-normalization = true
line-length = 79
[tool.isort]
profile = "black"
line_length = 79
known_first_party = "lasier,tests"
atomic = true