-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
110 lines (103 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
[project]
authors = [{name = "Volker L.", email = "[email protected]"}]
dependencies = [
"sf-hamilton[visualization]>=1.69.0",
"python-dotenv>=1.0.1",
"fsspec>=2024.5.0",
"pyyaml>=6.0.1",
"typer>=0.12.3",
"rich>=13.9.3",
"munch>=4.0.0",
"sf-hamilton-sdk>=0.5.2",
"dill>=0.3.8",
"pendulum>=3.0.0",
"tqdm>=4.67.1",
"pydantic>=2.10.2",
]
description = "A simple workflow framework. Hamilton + APScheduler = FlowerPower"
keywords = [
"hamilton",
"workflow",
"pipeline",
"scheduler",
"apscheduler",
"dask",
"ray",
]
name = "FlowerPower"
readme = "README.md"
requires-python = ">= 3.11"
version = "0.8.2.1"
[project.scripts]
flowerpower = "flowerpower.cli:app"
[project.optional-dependencies]
# dask = ["dask[complete]>=2024.7.1"]
filesystem-ext = [
"pyarrow>=18.1.0",
"polars>=1.15.0", #"duckdb>=1.1.3", #"datafusion>=42.0.0",
]
mongodb = ["pymongo>=4.7.2"]
mqtt = ["paho-mqtt>=2.1.0", "orjson>=3.10.11"]
opentelemetry = [
"opentelemetry-api>=1.5.0",
"opentelemetry-sdk>=1.5.0",
"opentelemetry-exporter-jaeger>=1.21.0",
"sf-hamilton[opentelemetry]>=1.83.3",
]
ray = ["ray>=2.34.0"]
redis = ["redis>=5.0.4"]
scheduler = [
"aiosqlite>=0.20.0",
"greenlet>=3.0.3",
"asyncpg>=0.29.0",
"sqlalchemy>=2.0.30",
"apscheduler>=4.0.0a5", #"apscheduler @ git+https://github.com/agronholm/apscheduler",
]
tui = ["textual>=0.85.2"]
ui = ["sf-hamilton-ui>=0.0.11"]
webserver = [
"sanic>=24.6.0",
"sanic-ext>=23.12.0",
"orjson>=3.10.11",
]
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling"]
[tool.rye]
dev-dependencies = [
"ipython>=8.24.0",
"isort>=5.13.2",
"pillow>=10.3.0",
"cloudpickle>=3.0.0",
"dill>=0.3.8",
"cbor2>=5.6.4",
"lxml>=5.3.0",
"msgspec>=0.18.6",
"ruff>=0.7.1",
"polars>=1.12.0",
"duckdb>=1.1.3",
"pygit2>=1.16.0",
"s3fs>=2024.10.0",
"jupyterlab>=4.3.0",
"deltalake>=0.21.0",
"datafusion>=42.0.0",
"joblib>=1.4.2",
"toml>=0.10.2",
]
#[tool.rye.scripts]
#flowerpower = {cmd = ["python", "-m", "flowerpower.cli"]}
managed = true
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/flowerpower"]
[tool.hatch.build.targets.sdist]
exclude = [
"tests",
"docs",
"examples",
"src/flowerpower.egg-info",
"src/flowerpower/__pycache__",
"docker",
".gitignore",
]