File size: 908 Bytes
3243379
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
from setuptools import setup, find_packages

setup(
    name="async-framework",
    version="0.1.0",
    packages=find_packages(exclude=["tests*"]),
    install_requires=[
        "redis>=4.5.0",
        "pydantic>=2.0.0",
        "prometheus-client>=0.17.0",
        "tenacity>=8.2.0",
        "structlog>=23.1.0",
    ],
    python_requires=">=3.10",
    author="Your Name",
    author_email="your.email@example.com",
    description="A Redis-based message queue framework with monitoring and retry capabilities",
    long_description=open("README.md").read(),
    long_description_content_type="text/markdown",
    keywords="redis, queue, broker, consumer, async",
    classifiers=[
        "Development Status :: 3 - Alpha",
        "Intended Audience :: Developers",
        "Programming Language :: Python :: 3.10",
        "Programming Language :: Python :: 3.11",
    ],
)