parent
a00a68b414
commit
60f102d188
1 changed files with 18 additions and 7 deletions
|
@ -1,9 +1,9 @@
|
||||||
[tool.poetry]
|
[tool.poetry]
|
||||||
name = "redis-om"
|
name = "redis-om"
|
||||||
version = "0.0.27"
|
version = "0.0.27"
|
||||||
description = "Objecting mapping, and more, for Redis."
|
description = "Object mappings, and more, for Redis."
|
||||||
authors = ["Andrew Brookins <andrew.brookins@redis.com>"]
|
authors = ["Redis OSS <oss@redis.com>"]
|
||||||
maintainers = ["Andrew Brookins <andrew.brookins@redis.com>"]
|
maintainers = ["Redis OSS <oss@redis.com>"]
|
||||||
license = "BSD-3-Clause"
|
license = "BSD-3-Clause"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
repository = "https://github.com/redis-developer/redis-om-python"
|
repository = "https://github.com/redis-developer/redis-om-python"
|
||||||
|
@ -12,8 +12,17 @@ packages = [
|
||||||
]
|
]
|
||||||
classifiers = [
|
classifiers = [
|
||||||
"Development Status :: 3 - Alpha",
|
"Development Status :: 3 - Alpha",
|
||||||
|
"Environment :: Console",
|
||||||
"Intended Audience :: Developers",
|
"Intended Audience :: Developers",
|
||||||
"Topic :: Database :: Front-Ends",
|
"Operating System :: OS Independent",
|
||||||
|
"Topic :: Database",
|
||||||
|
'License :: OSI Approved :: BSD License',
|
||||||
|
'Programming Language :: Python :: 3.10',
|
||||||
|
'Programming Language :: Python :: 3.6',
|
||||||
|
'Programming Language :: Python :: 3.7',
|
||||||
|
'Programming Language :: Python :: 3.8',
|
||||||
|
'Programming Language :: Python :: 3.9',
|
||||||
|
'Programming Language :: Python',
|
||||||
]
|
]
|
||||||
include=[
|
include=[
|
||||||
"docs/*",
|
"docs/*",
|
||||||
|
@ -21,6 +30,10 @@ include=[
|
||||||
"redis_om/**/*",
|
"redis_om/**/*",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[tool.poetry.urls]
|
||||||
|
"Code" = "https://github.com/redis/redis-om-python"
|
||||||
|
"Issue tracker" = "https://github.com/redis/redis-om-python/issues"
|
||||||
|
|
||||||
[tool.poetry.dependencies]
|
[tool.poetry.dependencies]
|
||||||
python = "^3.7,<=3.11"
|
python = "^3.7,<=3.11"
|
||||||
redis = ">=3.5.3,<5.0.0"
|
redis = ">=3.5.3,<5.0.0"
|
||||||
|
@ -29,7 +42,6 @@ pydantic = "^1.8.2"
|
||||||
click = "^8.0.1"
|
click = "^8.0.1"
|
||||||
pptree = "^3.1"
|
pptree = "^3.1"
|
||||||
types-redis = ">=3.5.9,<5.0.0"
|
types-redis = ">=3.5.9,<5.0.0"
|
||||||
types-six = "^1.16.1"
|
|
||||||
python-ulid = "^1.0.3"
|
python-ulid = "^1.0.3"
|
||||||
cleo = "1.0.0a5"
|
cleo = "1.0.0a5"
|
||||||
typing-extensions = "^4.0.0"
|
typing-extensions = "^4.0.0"
|
||||||
|
@ -40,7 +52,6 @@ more-itertools = "^8.14.0"
|
||||||
mypy = "^0.971"
|
mypy = "^0.971"
|
||||||
pytest = "^7.1.2"
|
pytest = "^7.1.2"
|
||||||
ipdb = "^0.13.9"
|
ipdb = "^0.13.9"
|
||||||
pylint = "^2.13.9"
|
|
||||||
black = "^22.6"
|
black = "^22.6"
|
||||||
isort = "^5.9.3"
|
isort = "^5.9.3"
|
||||||
flake8 = "^5.0.4"
|
flake8 = "^5.0.4"
|
||||||
|
@ -60,4 +71,4 @@ migrate = "redis_om.model.cli.migrate:migrate"
|
||||||
|
|
||||||
[build-system]
|
[build-system]
|
||||||
requires = ["poetry-core>=1.0.0"]
|
requires = ["poetry-core>=1.0.0"]
|
||||||
build-backend = "poetry.core.masonry.api"
|
build-backend = "poetry.core.masonry.api"
|
Loading…
Reference in a new issue