-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
35 lines (30 loc) · 908 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
[tool.poetry]
name = "redis-python-tutorial"
version = "0.1.0"
description = ""
authors = ["Todd Birchard <toddbirchard@gmail.com>"]
maintainers = ["Todd Birchard <toddbirchard@gmail.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://hackersandslackers.com/redis-python/"
repository = "https://github.com/hackersandslackers/redis-python-tutorial/"
documentation = "https://hackersandslackers.com/using-redis-python-applications/"
keywords = ["Redis",
"Cache",
"Queue",
"Sessions",
"NoSQL"]
[tool.poetry.dependencies]
python = "^3.7"
redis = "*"
loguru = "*"
python-dotenv = "*"
[tool.poetry.dev-dependencies]
pytest = "^4.6"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.poetry.scripts]
run = "wsgi:main"
[tool.poetry.urls]
issues = "https://github.com/hackersandslackers/redis-python-tutorial/issues"