-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
47 lines (43 loc) · 1.41 KB
/
pyproject.toml
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
[project]
name = "unitycatalog-migrate"
version = "0.1.1"
description = "Migrate catalogs from Databricks to Unity Catalog"
keywords = ["databricks", "unitycatalog", "migration"]
authors = [{name="Daniël Tom", email="[email protected]"}]
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"databricks-sdk>=0.41.0",
"typer>=0.15.1",
"unitycatalog-client>=0.2.1",
]
license = {file = "LICENSE"}
Homepage = "https://github.com/dan1elt0m/unitycatalog-migrate"
Repository = "https://github.com/dan1elt0m/unitycatalog-migrate"
Documentation = "https://github.com/dan1elt0m/unitycatalog-migrate#readme"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project.scripts]
ucm = "unitycatalog_migrate.main:main"
[dependency-groups]
dev = [
"pytest>=7.4.4",
"pytest-asyncio>=0.23.8",
"pytest-coverage>=0.0",
"ruff>=0.9.3",
"testcontainers>=4.9.1",
]