-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
92 lines (79 loc) · 1.63 KB
/
pyproject.toml
File metadata and controls
92 lines (79 loc) · 1.63 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
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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "arroyoSAS"
version = "0.0.1"
description = "A package to perform computations and suggestions during a time-resolved GISAXS experiment."
authors = [{ name = "Dylan McReynolds", email = "dmcreynolds@lbl.gov" }]
dependencies = [
"arroyopy",
"dynaconf",
"python-dotenv",
"pandas",
"msgpack",
"numpy",
"Pillow",
"bluesky-tiled-plugins==2.0.0b57",
"pyzmq",
"tqdm",
"typer",
"websockets",
"zarr",
"pyFAI",
"transformers",
"redis"]
[project.optional-dependencies]
workflow-viz = [
"joblib",
"numpy<2.0.0",
"pandas",
"plotly-express",
"pyFAI==2023.9.0",
"python-dotenv",
"pyarrow>=14.0.1",
"requests==2.26.0",
"diskcache==5.6.3",
"scikit-learn==1.3.0"]
dev = [
"fakeredis",
"flake8",
"pre-commit",
"pytest-asyncio",
"pytest-mock",
"tiled[server] >=0.1.0b14, <0.2"
]
lse = [
"torchvision==0.17.2",
"joblib"
]
all = [
"arroyopy",
"bluesky",
"dynaconf",
"python-dotenv",
"pandas",
"msgpack",
"numpy",
"ophyd",
"Pillow",
"pyzmq",
"tqdm",
"typer",
"websockets",
"tiled[client] >=0.1.0b14, <0.2",
"redis",
"numpy<2.0.0",
"pandas",
"python-dotenv",
"pyarrow>=14.0.1",
"aiosqlite",
]
[tool.isort]
profile = "black"
[tool.pixi.pypi-dependencies]
[tool.pixi.environments]
# # default = { solve-group = "default" }
dev = { features = ["dev"] }
# # notebook = { features = ["notebook"], solve-group = "default" }
# lse = { features = ["lse"]}