-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
47 lines (42 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
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "django-redis-om"
version = "0.1"
description = "Redis ORM library that gives redis easy-to-use objects with fields and speeds a development up"
readme = "README.md"
keywords = ["redis", "ORM"]
authors = [
"Daniel Moran <[email protected]>",
]
maintainers = [
"Daniel Moran <[email protected]>",
]
license = "MIT"
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
]
homepage = "https://github.com/dsoftwareinc/redis-models"
documentation = "https://redis-models.readthedocs.io/en/latest/"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/dsoftwareinc/redis-models/issues"
"Funding" = "https://github.com/sponsors/cunla"
[tool.poetry.dependencies]
python = "^3.9"
redis-om = "^0.1"
[tool.poetry.dev-dependencies]
coverage = "^7"
fakeredis = "^2.11"
parameterized = "^0.9"
Flake8-pyproject = "^1"
[tool.flake8]
max-line-length = 119