-
Notifications
You must be signed in to change notification settings - Fork 10
/
pyproject.toml
50 lines (45 loc) · 1.17 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "scarr"
version = "0.1.0"
authors = [
{ name="Jonah Bosland", email="boslandj@oregonstate.edu" },
{ name="Stefan Ene", email="enes@oregonstate.edu" },
{ name="Vincent Immler", email="vincent.immler+scarr@oregonstate.edu" },
]
description = "A high-performance SCA library for datasets that include NxM EM trace grids."
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
'numpy<2',
'numba',
'zarr[jupyter]',
'torch',
'ruff',
'mpmath',
'matplotlib',
'scipy',
'liccheck',
]
license = {text = "MPL-2.0"}
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Operating System :: OS Independent",
]
[project.urls]
"Homepage" = "https://github.com/decryptofy/scarr"
"Bug Tracker" = "https://github.com/decryptofy/scarr/issues"
[tool.autopep8]
ignore = "E501,W6" # or ["E501", "W6"]
in-place = true
recursive = true
aggressive = 3
[tool.ruff.lint]
select = ["E4", "E9", "F"]
ignore = ["E7"]
# Allow fix for all enabled rules (when `--fix`) is provided.
fixable = ["ALL"]
unfixable = []