-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
48 lines (41 loc) · 1.05 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
[project]
name = "hartufo"
authors = [{name = "Johan Pauwels", email = "johan.pauwels@gmail.com"}]
readme = "README.md"
license = {file = "LICENSE"}
classifiers = ["License :: OSI Approved :: Apache Software License"]
dynamic = ["version", "description"]
requires-python = ">=3.8"
dependencies = [
"matplotlib >=3.5",
"netCDF4 >=1.5",
"numpy >=1.22",
"openpyxl >=3.1",
"Pillow >=9",
"pymatreader >=0.0.32",
"samplerate >=0.1.0",
"scipy >=1.7",
"torchvision >=0.11",
"tqdm",
]
[project.urls]
Home = "https://github.com/jpauwels/hartufo"
Changelog = "https://github.com/jpauwels/hartufo/releases"
Issues = "https://github.com/jpauwels/hartufo/issues"
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[tool.flit.sdist]
exclude = [".gitignore", ".github/", "docs/", "tests/"]
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
]
[tool.ruff]
line-length = 150
exclude = [
".git",
]
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401"]
"*.ipynb" = ["E402", "F821"]