-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPipfile
More file actions
39 lines (36 loc) · 732 Bytes
/
Pipfile
File metadata and controls
39 lines (36 loc) · 732 Bytes
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
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"
[packages]
grpcio-tools = ">=1.49.1,<=1.74.0"
grpcio-health-checking = ">=1.49.1,<=1.74.0"
protobuf = ">=5.0.0,<6.0.0"
loguru = "*"
numpy = ">=2.0.2"
tqdm = "*"
cryptography = "*"
boto3 = "*"
[dev-packages]
ipykernel = "*"
ipywidgets = "*"
ruff = "*"
pre-commit = "*"
pytest = "*"
pytest-cov = "*"
pytest-html = "*"
pytest-xdist = "*"
sphinx = "*"
nbsphinx = "*"
sphinx-mdinclude = "*"
sphinx-rtd-theme = "==2.0.0"
mypy = "*"
types-psutil = "*"
types-Deprecated = "*"
line-profiler = "*"
furo = "*"
myst_nb = "*"
[scripts]
export-wheel = "bash scripts/build_and_install.sh --type wheel"
pytest = "pytest -v"
docs = "sphinx-build -b html docs build_docs"