-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
37 lines (33 loc) · 1.14 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "unifiedcatalogpy"
dynamic = ["version"]
dependencies = [
"requests",
]
description = "A Python client for interacting with the Microsoft Purview Unified Catalog API."
authors = [
{ name = "Olaf Wrieden" }
]
license = { file = "LICENSE" }
keywords = ["Microsoft Purview", "Unified Catalog", "Purview", "Data Governance", "Data Catalog"]
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3.9",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://github.com/olafwrieden/unifiedcatalogpy"
Documentation = "https://github.com/olafwrieden/unifiedcatalogpy"
Repository = "https://github.com/olafwrieden/unifiedcatalogpy.git"
"Bug Tracker" = "https://github.com/olafwrieden/unifiedcatalogpy/issues"
Changelog = "https://github.com/olafwrieden/unifiedcatalogpy/commits/main/"
[tool.setuptools]
packages = ["unifiedcatalogpy"]
[tool.setuptools.dynamic]
version = { attr = "unifiedcatalogpy.__version__" }