-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
29 lines (26 loc) · 991 Bytes
/
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "privateai_client"
dynamic = ["version"]
authors = [
{ name="Adam Guiducci", email="[email protected]" },
{ name="Bryan Bell-Smith", email="[email protected]" },
]
description = "A thin client for communicating with the Private AI de-identication API."
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = ["requests~=2.32.3"]
[project.urls]
"Homepage" = "https://github.com/privateai/pai-thin-client/"
"Bug Tracker" = "https://github.com/privateai/pai-thin-client/issues"
"Changelog" = "https://github.com/privateai/pai-thin-client/blob/main/CHANGELOG.md"
"Contributing" = "https://github.com/privateai/pai-thin-client/blob/main/CONTRIBUTING.md"
[tool.hatch.version]
path = "src/privateai_client/__about__.py"