-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (47 loc) · 1.26 KB
/
pyproject.toml
File metadata and controls
56 lines (47 loc) · 1.26 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
[build-system]
requires = ["maturin>=1.4,<2.0"]
build-backend = "maturin"
[project]
name = "aqora-cli"
description = "The aqora command line interface"
authors = [{ name = "S.A.S Aqora Quantum", email = "hello@aqora.io" }]
requires-python = ">=3.8"
dynamic = ["version"]
# keywords = []
# classifiers = []
dependencies = ["typing-extensions>=4.13.2", "uv >=0.3.2, <1.0.0"]
[project.entry-points."fsspec.specs"]
aqora = "aqora_cli.fsspec.AqoraFileSystem"
[project.optional-dependencies]
venv = [
"build >=1.2.0, <2.0.0",
"setuptools >=61.0",
"ujson >= 5.9.0, <6.0.0",
"jupyterlab >= 4.2.1, < 5.0.0",
"ipykernel >=6.29.4, <7.0.0",
"nbconvert >= 7.16.4, <8.0.0",
"nbformat >= 5.10.4, <6.0.0",
]
fsspec = ["fsspec>=2025.3.0"]
pyarrow = ["fsspec>=2025.3.0", "pyarrow>=17.0.0"]
[project.urls]
Repository = "https://github.com/aqora-io/cli"
Documentation = "https://github.com/aqora-io/cli"
[project.scripts]
aqora = "aqora_cli:main"
[tool.maturin]
python-source = "python"
module-name = "aqora_cli._aqora_cli"
strip = true
features = ["extension-module"]
[dependency-groups]
dev = [
"fsspec>=2025.3.0",
"pandas>=2.0.3",
"pandas-stubs>=2.0.3.230814",
"polars>=1.8.2",
"pyarrow>=17.0.0",
"pyarrow-stubs>=17.19",
"pytest>=8.3.5",
"pytest-asyncio>=0.24.0",
]