from setuptools import setup, find_packages

setup(
    name="openalgo",
    version="1.0.36",
    author="Rajandran R",
    author_email="rajandran@marketcalls.in",
    description="A Python library for interacting with OpenAlgo's trading APIs and Technical Indicators",
    long_description=open('README.md').read(),
    long_description_content_type="text/markdown",
    url="https://openalgo.in",
    packages=find_packages(),
    install_requires=[
        "httpx>=0.23.0",
        "pandas>=1.2.0",
        "websocket-client>=1.8.0",
        "numba>=0.55.0",
        "numpy>=1.21.0"
    ],
    classifiers=[
        "Programming Language :: Python :: 3",
        "License :: OSI Approved :: MIT License",
        "Operating System :: OS Independent",
    ],
    python_requires='>=3.6',
)