-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (52 loc) · 1.6 KB
/
pyproject.toml
File metadata and controls
57 lines (52 loc) · 1.6 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
45
46
47
48
49
50
51
52
53
54
55
56
57
[project]
name = "cloud-pipelines"
version = "0.26.3.12"
description = "SDK for Cloud Pipelines"
authors = [
{name = "Alexey Volkov", email = "alexey.volkov@ark-kun.com"},
]
license = {text = "Apache License 2.0"}
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"PyYAML",
"docker~=7.1.0",
"docstring-parser>=0.16",
"isodate ~= 0.6.1",
"strip-hints >= 0.1.8",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
[project.urls]
homepage = "https://cloud-pipelines.net"
source = "https://github.com/Cloud-Pipelines/sdk"
issues = "https://github.com/Cloud-Pipelines/sdk/issues"
[project.optional-dependencies]
tests = [
"kubernetes>=33.1.0",
"mock",
]
[tool.setuptools.packages.find]
include = ["cloud_pipelines*", "pipelines*"]
exclude = ["*tests*"]
[tool.setuptools.exclude-package-data]
"*" = ["*tests*"]
[build-system]
requires = ["setuptools>=42"]
build-backend = "setuptools.build_meta"