-
Notifications
You must be signed in to change notification settings - Fork 59
Expand file tree
/
Copy pathpyproject.toml
More file actions
80 lines (73 loc) · 1.75 KB
/
pyproject.toml
File metadata and controls
80 lines (73 loc) · 1.75 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
76
77
78
79
80
[build-system]
requires = ["setuptools>=61.0", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
[project]
name = "scaaml"
authors = [
{ name="Elie Bursztein"},
{ name="Luca Invernizzi"},
{ name="Karel Král"},
{ name="Jean-Michel Picod"},
]
description = "Side Channel Attack Assisted with Machine Learning"
readme = "README.md"
requires-python = ">=3.11"
keywords = ["machine learning", "dataset", "side channel attack"]
license = {text = "Apache License 2.0"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Framework :: Jupyter",
"License :: OSI Approved :: Apache Software License",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dynamic = ["version"]
dependencies = [
"cryptography",
"matplotlib",
"numpy",
"picosdk",
"pip",
"pyvisa",
"pyvisa-py",
"semver",
"setuptools",
"tabulate",
"tensorflow",
"termcolor",
"tqdm",
"wheel",
]
[tool.setuptools.dynamic]
version = {attr = "scaaml.__version__"}
[project.optional-dependencies]
capture = [
"chipwhisperer", # Capture pipeline.
]
dev = [
"flake8",
"jax[cuda13]",
"mypy",
"psutil",
"pydantic",
"pylint",
"pytest",
"pytest-cov",
"types-cryptography",
"types-tensorflow",
"yapf",
]
extra = [
"networkx[default]", # Enable relational heads in the GPAM model.
"scipy", # Enable significance test metric.
]
[project.scripts]
[project.urls]
"Homepage" = "https://github.com/google/scaaml"
"Bug Tracker" = "https://github.com/google/scaaml"
[tool.setuptools.package-data]
scaaml = ["py.typed"]