-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (40 loc) · 1.19 KB
/
pyproject.toml
File metadata and controls
44 lines (40 loc) · 1.19 KB
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
40
41
42
43
44
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build]
exclude = [
".gitignore", "tests/*", ".github/*"
]
[tool.hatch.build.targets.wheel]
packages = ["digitalai"]
[project]
name = "digitalai_release_sdk"
version = "26.1.0"
authors = [
{ name="Digital.ai", email="pypi-devops@digital.ai" },
]
description = "Digital.ai Release SDK"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
'dataclasses-json>=0.6.7, <1.0.0',
'pycryptodomex>=3.23.0, <4.0.0',
'python-dateutil>=2.9.0, <3.0.0',
'requests>=2.32.5, <3.0.0',
'kubernetes>=35.0.0, <36.0.0'
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
[project.urls]
Homepage = "https://digital.ai/"
Documentation = "https://docs.digital.ai/release/docs/category/python-sdk"