-
Notifications
You must be signed in to change notification settings - Fork 33
/
pyproject.toml
69 lines (60 loc) · 1.72 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
[tool.poetry]
name = "pyspm"
version = "0.6.2"
description = "Library to handle SPM and ToF-SIMS data"
authors = ["Olivier Scholder <[email protected]>"]
maintainers = ["Dinesh Pinto <[email protected]>"]
homepage = "https://github.com/scholi/pySPM"
repository = "https://github.com/scholi/pySPM"
license = "Apache-2.0"
readme = "README.md"
documentation = "https://nbviewer.org/github/scholi/pySPM/blob/master/doc/pySPM%20Documentation.ipynb"
keywords = ["ToF", "SIMS", "ION-ToF", "SPM", "SFM", "SXM", "AFM", "KPFM", "PCA", "ITA", "imaging", "ITM", "Bruker", "Nanonis"]
packages = [{ include = "pySPM" }]
[tool.poetry.dependencies]
python = ">=3.10,<3.13"
scikit-learn = "^1.2.2"
scikit-image = ">=0.21.0"
numpy = "^1.26.0"
matplotlib = "^3.7.1"
seaborn = "^0.13.0"
psutil = "^5.9.4"
tqdm = "^4.65.0"
ipython = "^8.16.0"
[tool.poetry.group.test]
optional = true
[tool.poetry.group.test.dependencies]
coverage = "^7.3.1"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
ruff = "^0.1.11"
ruff-lsp = "^0.0.49"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
target-version = "py310"
[tool.ruff.lint]
extend-select = [
"E", # pycodestyle-error
"W", # pycodestyle-warning
"F", # pyflakes
"N", # pep8-naming
"B", # flake8-bugbear
"I", # isort
"ASYNC", # flake8-async
"BLE", # flake8-blind-except
"A", # flake8-builtins
"C4", # flake8-comprehensions
"ERA", # flake8-eradicate/eradicate
"PIE", # flake8-pie
"PGH", # pygrep
"RUF", # ruff checks
"SIM", # flake8-simplify
"TCH", # flake8-type-checking
"TID", # flake8-tidy-imports
"UP", # pyupgrade
]
[tool.ruff.format]
docstring-code-format = true