-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
47 lines (41 loc) · 991 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
37
38
39
40
41
42
43
44
45
46
47
[tool.poetry]
name = "Redis Python Tutorial"
version = "0.1.0"
description = ""
authors = ["Todd Birchard <[email protected]>"]
maintainers = ["Todd Birchard <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://hackersandslackers.com/redis-py-python/"
repository = "https://github.com/hackersandslackers/redis-python-tutorial/"
documentation = "https://hackersandslackers.com/redis-py-python/"
keywords = [
"Redis",
"Cache",
"Queue",
"Memory",
"NoSQL"
]
[tool.poetry.dependencies]
python = "3.9"
redis = "*"
loguru = "*"
python-dotenv = "*"
[tool.poetry.dev-dependencies]
pytest = "*"
coverage = "*"
mock = "*"
mypy = "*"
black = "*"
isort = "*"
flake8 = "*"
pylint = "*"
[build-system]
requires = ["poetry>=1.1.12"]
build-backend = "poetry.masonry.api"
[tool.poetry.scripts]
run = "main:init_script"
[tool.poetry.urls]
issues = "https://github.com/hackersandslackers/redis-python-tutorial/issues"
[tool.black]
line-length = 100