from setuptools import setup, find_packages with open("README.md", "r", encoding="utf-8") as fh: long_description = fh.read() setup( name="deepvest", version="1.0.0", author="Auteur", author_email="email@example.com", description="Assistant d'investissement personnalisé avec IA", long_description=long_description, long_description_content_type="text/markdown", url="https://github.com/yourusername/deepvest", packages=find_packages(), classifiers=[ "Programming Language :: Python :: 3", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", ], python_requires=">=3.8", install_requires=[ "numpy>=1.21.0", "pandas>=1.3.0", "scipy>=1.7.0", "matplotlib>=3.4.3", "scikit-learn>=0.24.2", "torch>=1.9.0", "streamlit>=1.8.0", "yfinance>=0.1.63", "transformers>=4.0.0", "aiohttp>=3.8.0", "plotly>=5.6.0", ], )