20 lines
499 B
TOML
20 lines
499 B
TOML
[project]
|
|
name = "mysql2postgres"
|
|
version = "0.1.0"
|
|
description = "Robust MySQL to PostgreSQL migration tool with schema transformation and performance benchmarking"
|
|
readme = "README.md"
|
|
requires-python = ">=3.10"
|
|
dependencies = [
|
|
"pymysql>=1.1.0",
|
|
"psycopg[binary]>=3.1.0",
|
|
"python-dotenv>=1.0.0",
|
|
"click>=8.1.0",
|
|
"rich>=13.0.0",
|
|
"pydantic>=2.5.0",
|
|
"pydantic-settings>=2.1.0",
|
|
"cryptography>=46.0.3",
|
|
"gradio>=4.0.0",
|
|
"pandas>=2.0.0",
|
|
"plotly>=5.0.0",
|
|
]
|