-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
pyproject.toml
90 lines (81 loc) · 2.29 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
[project]
name = "domino-py"
dynamic = ["version", "readme"]
description = "Python package for Domino."
authors = [
{ name = "Luiz Tauffer", email = "luiz@taufferconsulting.com" },
{ name = "Vinicius Vaz", email = "vinicius@taufferconsulting.com" },
]
requires-python = ">=3.8"
keywords = ["domino", "airflow", "gui"]
license = { file = "LICENSE" }
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: User Interfaces",
]
dependencies = [
"pydantic==2.4.2",
"tomli==2.0.1",
"tomli-w==1.0.0",
"PyYAML==6.0.1",
"jsonschema==4.18.0",
"click==8.1.3",
"rich>=13.4.2",
"colorama==0.4.6",
]
[project.urls]
homepage = "https://github.com/Tauffer-Consulting/domino"
documentation = "https://tauffer-consulting.github.io/domino-docs/"
repository = "https://github.com/Tauffer-Consulting/domino"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
package-dir = { "" = "src" }
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
domino = [
'cli/utils/config-domino-local.toml',
'cli/utils/docker-compose.yaml',
'custom_operators/sidecar/sidecar_lifecycle.sh',
'custom_operators/sidecar/rclone.conf',
'custom_operators/sidecar/fuse.conf',
'VERSION',
]
[tool.setuptools.dynamic]
version = { attr = "domino.__version__" }
readme = { file = 'README.md', content-type = 'text/markdown' }
[project.scripts]
domino = "domino.cli.cli:cli"
[project.optional-dependencies]
cli = [
"urllib3== 1.26.15",
"cryptography==39.0.1",
"pyOpenSSL==23.1.1",
"PyGithub==1.55",
"docker>=7.0.0",
"kubernetes==23.6.0",
"bottle==0.12.25",
"requests==2.31.0"
]
airflow = [
"apache-airflow==2.7.2",
"apache-airflow-providers-cncf-kubernetes==5.0.0",
"apache-airflow-providers-docker==3.6.0",
]
full = [
"bottle==0.12.25",
"urllib3== 1.26.15",
"cryptography==39.0.1",
"pyOpenSSL==23.1.1",
"PyGithub==1.55",
"docker>=6.0.1",
"kubernetes==23.6.0",
"apache-airflow==2.7.2",
"apache-airflow-providers-cncf-kubernetes==5.0.0",
"apache-airflow-providers-docker==3.6.0",
]