[build-system] requires = ["setuptools>=61.0"] build-backend = "setuptools.build_meta" [project] name = "market-data-service" version = "1.0.0" description = "统一行情数据服务 - Python实现" readme = "README.md" requires-python = ">=3.10" classifiers = [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", ] dependencies = [ "fastapi>=0.115.0", "uvicorn[standard]>=0.32.0", "python-socketio>=5.12.1", "websockets>=14.1", "sqlalchemy>=2.0.36", "psycopg2-binary>=2.9.10", "pandas>=2.2.3", "numpy>=2.1.3", "pydantic>=2.10.0", "pydantic-settings>=2.6.1", "python-dotenv>=1.0.1", "PyYAML>=6.0.2", "httpx>=0.28.0", "apscheduler>=3.11.0", ] [project.optional-dependencies] dev = [ "pytest>=8.3.4", "pytest-asyncio>=0.24.0", ] [tool.setuptools.packages.find] where = ["."] include = ["app*"]