-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (54 loc) · 1.55 KB
/
pyproject.toml
File metadata and controls
62 lines (54 loc) · 1.55 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[project]
name = "wandern"
version = "0.0.4"
authors = [{ name = "Shiladitya Bose", email = "shiladitya_basu@live.com" }]
description = "Wandern is a small, no-nonsense database migration tool for python"
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
]
dependencies = [
"jinja2>=3.1.6",
"networkx>=3.2.1",
"pydantic>=2.11.7",
"questionary>=2.1.0",
"rich>=13.9.4",
"typer>=0.13.0",
]
[project.scripts]
wandern = "wandern.__main__:app"
wd = "wandern.__main__:app"
[project.urls]
Homepage = "https://github.com/s-bose/wandern"
Issues = "https://github.com/s-bose/wandern/issues"
[project.optional-dependencies]
postgresql = [
"psycopg[binary]>=3.2.9",
]
mysql = ["mysql-connector-python>=9.4.0"]
openai = ["pydantic-ai-slim[openai]>=0.7.4"]
google-genai = ["pydantic-ai-slim[google]>=0.7.4"]
[build-system]
requires = ["setuptools>=80.9.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
exclude = ["tests*"]
[[tool.mypy.overrides]]
module = ["graphviz"]
ignore_missing_imports = true
check_untyped_defs = true
[tool.uv]
dev-dependencies = ["pytest>=8.3.3", "pytest-asyncio>=0.24.0"]
[dependency-groups]
dev = ["pre-commit>=4.3.0", "ruff>=0.12.7", "types-networkx>=3.4.2.20250509"]
test = [
"psycopg[binary]>=3.2.9",
"mysql-connector-python>=9.4.0",
"pytest-cov>=6.2.1",
"testcontainers[postgres]>=4.12.0",
"testcontainers[mysql]>=4.12.0",
]