-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (29 loc) · 796 Bytes
/
pyproject.toml
File metadata and controls
36 lines (29 loc) · 796 Bytes
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
[build-system]
requires = ["setuptools>=64", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "python-dbdiff"
dynamic = ["version"]
description = "Tools to compare database schemas and table rows."
readme = "README.md"
requires-python = ">=3.8"
license = {file = "LICENSE"}
dependencies = [
"click",
"mysql-connector-python",
"psycopg[binary]",
"python-dotenv",
]
[project.scripts]
schemadiff = "main:schemadiff"
datadiff = "maindata:datadiff"
[tool.setuptools]
package-dir = {"" = "src"}
py-modules = ["version"]
[tool.setuptools.dynamic]
version = {attr = "version.__version__"}
[tool.setuptools.packages.find]
where = ["src"]
include = ["datacompare", "dbdiff", "dbdiff.*", "util"]
[project.urls]
Repository = "https://github.com/example/python-dbdiff"