-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
70 lines (65 loc) · 1.34 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
[build-system]
build-backend = "setuptools.build_meta"
requires = [ "setuptools>=64", "setuptools-scm>=8" ]
[project]
name = "demo-uca-isilon-python"
description = "Demonstrating capabilities with the University of Colorado Anschutz (UCA) Isilon storage solution using Python."
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dynamic = [ "version" ]
dependencies = [
"jupyterlab>=4.3.4",
"matplotlib>=3.10",
"papermill>=2.6",
"requests>=2.32.3",
"scikit-image>=0.25",
]
[dependency-groups]
# dependency groups for uv
dev = [
"black>=24.10",
"isort>=5.13.2",
"jupyterlab-code-formatter>=3.0.2",
"jupytext>=1.16.6",
"pre-commit>=4.0.1",
"setuptools-scm>=8.1",
]
[tool.setuptools_scm]
root = "."
[tool.ruff]
target-version = "py38"
line-length = 88
fix = true
lint.select = [
# flake8-builtins
"A",
# flake8-annotations
"ANN",
# flake8-comprehensions
"C4",
# mccabe
"C90",
# pycodestyle
"E",
# pyflakes
"F",
# isort
"I",
# pylint
"PL",
# ruff
"RUF",
# flake8-simplify
"SIM",
"W",
]
# ignore typing rules for demo file
lint.per-file-ignores."demo.py" = [ "E501" ]
[tool.jupytext]
formats = "ipynb,py:light"