generated from navdeep-G/samplemod
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
75 lines (67 loc) · 1.66 KB
/
pyproject.toml
File metadata and controls
75 lines (67 loc) · 1.66 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
[project]
name = "stm-data-processing"
version = "0.3.0"
description = "STM / DFT / Wannier90 data processing toolkit"
readme = "README.md"
requires-python = ">=3.12"
license = {text = "MIT"}
authors = [
{name = "hunfen", email = "hunfen@anywhere.com"}
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Physics",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"numpy>=2.3.0",
"scipy>=1.16.0",
"matplotlib>=3.10.0",
"h5py>=3.15.0",
"pandas>=2.3.0",
"tqdm>=4.67.0",
"mpi4py>=4.1.1",
"ipykernel>=7.2.0",
]
[project.optional-dependencies]
gpu = ["cupy-cuda13x>=14.0.0",]
dev = [
"ruff>=0.15.1",
"ipykernel>=7.2.0",
]
[project.urls]
Repository = "https://github.com/Hunfen/STM_DataProcessing.git"
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
include = ["stm_data_processing*"]
exclude = ["tests*", "docs*"]
[tool.ruff]
target-version = "py312"
line-length = 88
[tool.ruff.lint]
select = [
"E", # pycodestyle error
"W", # pycodestyle warning
"F", # pyflakes
"I", # isort
"B", # flake8-bugbear
"C4", # flake8-comprehensions
"UP", # pyupgrade
"YTT", # flake8-2020
"Q", # flake8-quotes
"SIM", # flake8-simplify
"PTH", # flake8-use-pathlib
"RUF", # Ruff
]
ignore = [
"E501", "B008", "C901", "F841", "RUF002", "RUF003",
]
per-file-ignores = {"__init__.py" = ["F401"]}
[tool.ruff.format]
quote-style = "double"
indent-style = "space"