Skip to content

Commit 9b362c4

Browse files
authored
Update legal information (#196)
- Add `NOTICE` file - Add project support section - Add license classifier
1 parent b5b85dc commit 9b362c4

File tree

3 files changed

+27
-5
lines changed

3 files changed

+27
-5
lines changed

NOTICE

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
Copyright (2023) Databricks, Inc.
2+
3+
This Software includes software developed at Databricks (https://www.databricks.com/) and its use is subject to the included LICENSE file.
4+
5+
This Software contains code from the following open source projects, licensed under the Apache 2.0 license:
6+
7+
Databricks SDK for Python - https://github.com/databricks/databricks-sdk-py
8+
Copyright 2023 Databricks, Inc. All rights reserved.
9+
License - https://github.com/databricks/databricks-sdk-py/blob/main/LICENSE
10+
11+
This software contains code from the following open source projects, licensed under the MIT License.
12+
13+
PyYAML - https://github.com/yaml/pyyaml
14+
Copyright (c) 2017-2021 Ingy döt Net
15+
Copyright (c) 2006-2016 Kirill Simonov
16+
License - https://github.com/yaml/pyyaml/blob/main/LICENSE

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,3 +31,8 @@ export DATABRICKS_HOST=https://adb-123....azuredatabricks.net/
3131
Please note that current project statis is 🏗️ **WIP**, but we have a minimal set of already working utilities.
3232

3333
See [contributing instructions](CONTRIBUTING.md).
34+
35+
## Project Support
36+
Please note that all projects in the /databrickslabs github account are provided for your exploration only, and are not formally supported by Databricks with Service Level Agreements (SLAs). They are provided AS-IS and we do not make any guarantees of any kind. Please do not submit a support ticket relating to any issues arising from the use of these projects.
37+
38+
Any issues discovered through the use of this project should be filed as GitHub Issues on the Repo. They will be reviewed as time permits, but there are no formal SLAs for support.

pyproject.toml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,21 +9,22 @@ include = ["src"]
99
[project]
1010
name = "databricks-labs-ucx"
1111
dynamic = ["version"]
12-
description = ''
12+
description = 'UCX - Unity Catalog Migration Toolkit'
1313
readme = "README.md"
14+
license-files = { paths = ["LICENSE", "NOTICE"] }
1415
requires-python = ">=3.10.6" # latest available in DBR 13.2
15-
keywords = []
16+
keywords = ["Databricks", "Unity Catalog"]
1617
authors = [
1718
{ name = "Serge Smertin", email = "[email protected]" },
1819
{ name = "Ivan Trusov", email = "[email protected]" },
1920
]
2021
classifiers = [
2122
"Development Status :: 3 - Alpha",
23+
"License :: Other/Proprietary License",
2224
"Programming Language :: Python",
2325
"Programming Language :: Python :: 3.10",
2426
"Programming Language :: Python :: 3.11",
2527
"Programming Language :: Python :: Implementation :: CPython",
26-
"Programming Language :: Python :: Implementation :: PyPy",
2728
]
2829
dependencies = [
2930
"databricks-sdk~=0.8.0",
@@ -42,8 +43,8 @@ test = [
4243
runtime = "databricks.labs.ucx.runtime:main"
4344

4445
[project.urls]
45-
Issues = "https://github.com/databricks/UC-Upgrade/issues"
46-
Source = "https://github.com/databricks/UC-Upgrade"
46+
Issues = "https://github.com/databricks/ucx/issues"
47+
Source = "https://github.com/databricks/ucx"
4748

4849
[tool.hatch.version]
4950
path = "src/databricks/labs/ucx/__about__.py"

0 commit comments

Comments
 (0)