-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (33 loc) · 870 Bytes
/
pyproject.toml
File metadata and controls
38 lines (33 loc) · 870 Bytes
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
[build-system]
requires = ["hatchling==1.26.3", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "ultra-rest-client"
dynamic = ["version"]
description = "A sample Python client for communicating with the UltraDNS REST API"
readme = "README.md"
license-files = ["LICENSE"]
authors = [
{ name = "ultradns", email = "ultrassp-oss@vercara.com" },
]
keywords = [
"ultra_rest_client",
]
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: Apache Software License",
"Topic :: Utilities",
]
dependencies = [
"requests",
]
[project.urls]
Homepage = "https://github.com/ultradns/python_rest_api_client"
[tool.hatch.version]
path = "src/ultra_rest_client/about.py"
[tool.hatch.build.targets.sdist]
include = [
"src/ultra_rest_client",
]
[tool.hatch.build.targets.wheel]
packages = ["src/ultra_rest_client"]