forked from OlaKenji/ARpest
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (44 loc) · 997 Bytes
/
pyproject.toml
File metadata and controls
52 lines (44 loc) · 997 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
40
41
42
43
44
45
46
47
48
49
50
51
52
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "arpest"
version = "1.0.4"
description = "ARPES data analysis and visualization tool"
authors = [{name = "Ola Kenjiforslund"}]
readme = "README.md"
requires-python = ">=3.7.13"
license = {text = "MIT"}
dependencies = [
"numpy>=1.21.6",
"matplotlib>=3.5.3",
"scipy>=1.7.3",
"h5py>=3.6.0",
"pyqtgraph>=0.12.1",
"PyQt5>=5.15.6",
"igor>=0.3",
]
[project.optional-dependencies]
dev = [
"pytest>=7.4.0",
"pytest-qt>=4.2.0",
"black>=23.0.0",
"mypy>=1.5.0",
"ruff>=0.0.290",
]
[project.scripts]
arpest = "arpest.app:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["arpest*"]
[tool.black]
line-length = 100
target-version = ['py37']
[tool.ruff]
line-length = 100
select = ["E", "F", "W", "I", "N", "UP"]
[tool.mypy]
python_version = "3.7.13"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true