42 lines
929 B
TOML
42 lines
929 B
TOML
[build-system]
|
|
requires = ["setuptools>=68.0", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "stock-data-backend"
|
|
version = "0.1.0"
|
|
description = "Investing-signal platform for NASDAQ stocks"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"fastapi>=0.115.0",
|
|
"uvicorn[standard]>=0.30.0",
|
|
"sqlalchemy[asyncio]>=2.0.0",
|
|
"asyncpg>=0.30.0",
|
|
"alembic>=1.14.0",
|
|
"pydantic-settings>=2.0.0",
|
|
"python-jose[cryptography]>=3.3.0",
|
|
"passlib[bcrypt]>=1.7.4",
|
|
"apscheduler>=3.10.0",
|
|
"httpx>=0.27.0",
|
|
"alpaca-py>=0.30.0",
|
|
"google-genai>=1.0.0",
|
|
"openai>=1.0.0",
|
|
"pytz>=2024.1",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest>=8.0.0",
|
|
"pytest-asyncio>=0.24.0",
|
|
"hypothesis>=6.100.0",
|
|
"httpx>=0.27.0",
|
|
"aiosqlite>=0.20.0",
|
|
]
|
|
|
|
[tool.setuptools.packages.find]
|
|
include = ["app*"]
|
|
|
|
[tool.pytest.ini_options]
|
|
asyncio_mode = "auto"
|
|
testpaths = ["tests"]
|