-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
41 lines (37 loc) · 1.28 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "allie-sdk"
description = "A Python library for the Alation REST APIs."
version = "1.0.0"
dependencies = [
"requests~=2.32.0",
"python-json-logger~=2.0.4",
"python-dateutil~=2.8.2"
]
authors = [
{ name="Mario Aburto", email="mario.aburto@alation.com"},
{ name="Diethard Steiner", email="diethard.steiner@alation.com"},
{ name="Jon Lanham", email="jon.lanham@alation.com"},
{ name="Radek Ignaszewski", email="radek.ignaszewski@alation.com"},
]
maintainers = [
{ name="Mario Aburto", email="mario.aburto@alation.com"},
{ name="Diethard Steiner", email="diethard.steiner@alation.com"},
{ name="Jon Lanham", email="jon.lanham@alation.com"},
{ name="Radek Ignaszewski", email="radek.ignaszewski@alation.com"},
]
readme = "README.md"
requires-python = ">=3.10"
license = {file = "LICENSE"}
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"License :: OSI Approved :: Apache Software License"
]
keywords = ["Alation", "Allie SDK", "Alation Python SDK", "Alation SDK"]
[project.urls]
Homepage = "https://github.com/Alation/Allie-SDK"
Issues = "https://github.com/Alation/Allie-SDK/issues"
Documentation = "https://alation.github.io/Allie-SDK/"