-
Notifications
You must be signed in to change notification settings - Fork 24
/
pyproject.toml
56 lines (50 loc) · 1.36 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
[tool.poetry]
name = "shared-memory-dict"
version = "0.7.2"
description = "A very simple shared memory dict implementation"
authors = ["Arquitetura LuizaLabs <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/luizalabs/shared-memory-dict"
repository = "https://github.com/luizalabs/shared-memory-dict"
keywords = ["django", "aiocache", "shared memory"]
classifiers = [
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Libraries :: Python Modules",
]
include = [
"LICENSE",
]
[tool.poetry.dependencies]
python = "^3.8"
django = { version = "^3.0.8", optional = true}
aiocache = { version = "^0.11.1", optional = true}
[tool.poetry.dev-dependencies]
pytest = "^6.2.5"
flake8 = "^3.9.2"
mypy = "^0.910"
black = "^21.9b0"
isort = "^5.0.4"
aiocache = "^0.11.1"
pytest-asyncio = "^0.15.1"
[tool.poetry.extras]
django = ["django"]
aiocache = ["aiocache"]
all = ["django", "aiocache"]
[tool.isort]
known_first_party = "shared_memory_dict"
atomic = true
line_length = 79
multi_line_output = 3
use_parentheses = true
include_trailing_comma = true
force_grid_wrap = 0
[tool.coverage.run]
omit = ["*/*/tests/*", "*/*/settings/*"]
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.black]
skip-string-normalization = true
line-length = 79