| [project] |
| name = "macrolens" |
| version = "0.1.0" |
| description = "MacroLens: a contextual financial benchmark (NeurIPS 2026 D&B submission)" |
| readme = "README.md" |
| license = { text = "MIT" } |
| requires-python = ">=3.11, <3.12" |
|
|
| dependencies = [ |
| |
| "numpy>=2.2.6", |
| "pandas>=2.3.0", |
| "pyarrow>=22.0.0", |
| "scipy>=1.13", |
| "scikit-learn>=1.5", |
| "tabulate>=0.9.0", |
| "tqdm>=4.67.1", |
| "joblib>=1.4", |
| "pyyaml>=6.0.2", |
| |
| "httpx>=0.28.1", |
| "python-dotenv>=1.1.1", |
| "beautifulsoup4>=4.13.4", |
| "html2text>=2025.4.15", |
| |
| "lightgbm>=4.5", |
| |
| "torch>=2.5", |
| "transformers>=4.45", |
| "accelerate>=1.0", |
| "huggingface-hub>=0.30", |
| "safetensors>=0.5", |
| "datasets>=3.0", |
| "einops>=0.8", |
| "sentence-transformers>=4.0", |
| "timm>=1.0", |
| |
| "chronos-forecasting>=2.0", |
| "timesfm>=1.2", |
| |
| "yfinance>=0.2.65", |
| |
| "duckdb>=1.0", |
| "neo4j>=5.20", |
| "pymilvus>=2.4", |
| "milvus-lite>=2.4", |
| |
| "langchain>=0.3", |
| "langchain-core>=0.3", |
| "langchain-community>=0.3", |
| "langchain-openai>=0.3", |
| "langgraph>=0.2", |
| "openai>=1.50", |
| |
| "matplotlib>=3.9", |
| "plotly>=5.24", |
| "jinja2>=3.1", |
| |
| "pytest>=8.3", |
| "pytest-asyncio>=1.0", |
| "pytest-cov>=6.1", |
| ] |
|
|
| [project.optional-dependencies] |
| vllm = ["vllm>=0.7"] |
| qlora = ["peft>=0.13", "trl>=0.12", "bitsandbytes>=0.44"] |
| |
| |
| |
| |
| |
| |
| moirai-runtime = [ |
| "lightning>=2.4", |
| "gluonts>=0.16", |
| "jaxtyping>=0.2", |
| ] |
| explorer = [ |
| "dash>=3.2", |
| "dash-bootstrap-components>=2.0", |
| "dash-mantine-components>=0.14", |
| "dash-ag-grid>=31.0", |
| "dash-iconify>=0.1", |
| "streamlit>=1.45", |
| ] |
|
|
| [build-system] |
| requires = ["hatchling"] |
| build-backend = "hatchling.build" |
|
|
| [tool.hatch.build.targets.wheel] |
| |
| |
| packages = [ |
| "macrolens", |
| "dataloader", |
| "agents", |
| "baselines", |
| "experiments", |
| "lakehouse", |
| "explorer", |
| ] |
|
|
| [tool.uv] |
| prerelease = "allow" |
|
|
| |
| |
| |
| override-dependencies = [ |
| "torch>=2.5", |
| ] |
|
|
| [tool.pytest.ini_options] |
| asyncio_mode = "auto" |
| testpaths = ["tests"] |
| python_files = ["test_*.py"] |
| filterwarnings = [ |
| "ignore::DeprecationWarning", |
| ] |
|
|