-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (43 loc) · 1.1 KB
/
pyproject.toml
File metadata and controls
50 lines (43 loc) · 1.1 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
[build-system]
requires = ["setuptools>=80"]
build-backend = "setuptools.build_meta"
[project]
name = "xconv2"
version = "0.2.0a1"
description = "High-performance data viewer and simple data converter"
requires-python = ">=3.12"
dependencies = [
"PySide6",
"superqt",
"cf-python",
"cf-plot",
"fsspec",
"s3fs",
"paramiko",
"zarr",
"pandas",
"setuptools>80",
]
[project.optional-dependencies]
test = [
"pytest",
"docker",
"minio",
]
[project.gui-scripts]
# This creates an 'xconv2' command that launches your GUI
xconv2 = "xconv2.gui:main"
[project.scripts]
# This creates a 'cf-worker' command for the backend process
cf-worker = "xconv2.worker:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["xconv2*"]
[tool.setuptools.package-data]
xconv2 = ["assets/*.svg", "assets/*.png"]
[tool.pytest.ini_options]
testpaths = ["tests"]
filterwarnings = [
"ignore:distutils Version classes are deprecated. Use packaging.version instead.:DeprecationWarning:cfplot.cfplot",
"ignore:'maxsplit' is passed as positional argument:DeprecationWarning:cf.functions",
]