|
| 1 | +[build-system] |
| 2 | +requires = ["hatchling"] |
| 3 | +build-backend = "hatchling.build" |
| 4 | + |
| 5 | +[project] |
| 6 | +name = "redis" |
| 7 | +version = "5.1.0b7" |
| 8 | +description = "Python client for Redis database and key-value store" |
| 9 | +readme = "README.md" |
| 10 | +license = "MIT" |
| 11 | +requires-python = ">=3.8" |
| 12 | +authors = [ |
| 13 | + { name = "Redis Inc.", email = "[email protected]" }, |
| 14 | +] |
| 15 | +keywords = [ |
| 16 | + "Redis", |
| 17 | + "database", |
| 18 | + "key-value-store", |
| 19 | +] |
| 20 | +classifiers = [ |
| 21 | + "Development Status :: 5 - Production/Stable", |
| 22 | + "Environment :: Console", |
| 23 | + "Intended Audience :: Developers", |
| 24 | + "License :: OSI Approved :: MIT License", |
| 25 | + "Operating System :: OS Independent", |
| 26 | + "Programming Language :: Python :: 3 :: Only", |
| 27 | + "Programming Language :: Python :: 3", |
| 28 | + "Programming Language :: Python :: 3.8", |
| 29 | + "Programming Language :: Python :: 3.9",x |
| 30 | + "Programming Language :: Python :: 3.10", |
| 31 | + "Programming Language :: Python :: 3.11", |
| 32 | + "Programming Language :: Python :: 3.12", |
| 33 | + "Programming Language :: Python :: Implementation :: CPython", |
| 34 | + "Programming Language :: Python :: Implementation :: PyPy", |
| 35 | + "Programming Language :: Python", |
| 36 | +] |
| 37 | +dependencies = [ |
| 38 | + 'async-timeout>=4.0.3; python_full_version<"3.11.3"', |
| 39 | +] |
| 40 | + |
| 41 | +[project.optional-dependencies] |
| 42 | +hiredis = [ |
| 43 | + "hiredis>=3.0.0", |
| 44 | +] |
| 45 | +ocsp = [ |
| 46 | + "cryptography>=36.0.1", |
| 47 | + "pyopenssl==20.0.1", |
| 48 | + "requests>=2.26.0", |
| 49 | +] |
| 50 | + |
| 51 | +[project.urls] |
| 52 | +Changes = "https://github.com/redis/redis-py/releases" |
| 53 | +Code = "https://github.com/redis/redis-py" |
| 54 | +Documentation = "https://redis.readthedocs.io/en/latest/" |
| 55 | +Homepage = "https://github.com/redis/redis-py" |
| 56 | +"Issue tracker" = "https://github.com/redis/redis-py/issues" |
| 57 | + |
| 58 | +[tool.hatch.build.targets.sdist] |
| 59 | +include = [ |
| 60 | + "/redis", |
| 61 | +] |
0 commit comments