-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (46 loc) · 1.1 KB
/
pyproject.toml
File metadata and controls
54 lines (46 loc) · 1.1 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
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools>=67.0", "setuptools_scm[toml]>=7.1"]
[project]
authors = [{"name" = "Robert Hafner"}]
dependencies = [
"pydot >= 3.0, < 5.0",
"packaging",
"sqlalchemy",
"typer",
"toml; python_version < '3.11'"
]
description = "Visualize SQLAlchemy Databases using Mermaid or Dot Diagrams."
dynamic = ["version"]
license = {"file" = "LICENSE"}
name = "paracelsus"
readme = {file = "README.md", content-type = "text/markdown"}
requires-python = ">= 3.10"
[project.optional-dependencies]
dev = [
"build",
"dapperdata",
"glom",
"mypy",
"pip-tools",
"pytest",
"pytest-cov",
"pytest-pretty",
"ruamel.yaml",
"ruff",
"toml-sort"
]
[project.scripts]
paracelsus = "paracelsus.cli:app"
[tool.ruff]
exclude = [".venv", "./paracelsus/_version.py"]
line-length = 120
[tool.setuptools.dynamic]
readme = {file = ["README.md"]}
[tool.setuptools.package-data]
paracelsus = ["py.typed"]
[tool.setuptools.packages.find]
exclude = ["tests*", "docs*"]
[tool.setuptools_scm]
fallback_version = "0.0.0-dev"
write_to = "paracelsus/_version.py"