22 lines
475 B
TOML
22 lines
475 B
TOML
|
[tool.poetry]
|
||
|
name = "crypto-graph"
|
||
|
version = "0.1.0"
|
||
|
description = "Crypto data processing project"
|
||
|
package-mode = false
|
||
|
authors = ["Your Name <your.email@example.com>"]
|
||
|
|
||
|
[tool.poetry.dependencies]
|
||
|
python = "^3.12"
|
||
|
fastapi = "^0.95.2"
|
||
|
uvicorn = "^0.23.2"
|
||
|
sqlalchemy = "^2.0.0"
|
||
|
pandas = "^2.0.3"
|
||
|
psycopg2-binary = "^2.9.6"
|
||
|
mysql-connector-python = "^8.1.0"
|
||
|
python-dotenv = "^1.0.0"
|
||
|
|
||
|
[build-system]
|
||
|
requires = ["poetry-core>=1.0.0"]
|
||
|
build-backend = "poetry.core.masonry.api"
|
||
|
|