Spaces:
Configuration error
Configuration error
File size: 596 Bytes
3243379 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | [build-system]
requires = ["setuptools>=45", "wheel>=0.36.0", "build>=0.7.0"]
build-backend = "setuptools.build_meta"
[project]
name = "async-framework"
version = "0.1.0"
description = "A Redis-based message queue framework with monitoring and retry capabilities"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT"}
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
[tool.setuptools]
packages = ["async_framework"]
|