-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathpyproject.toml
66 lines (59 loc) · 1.47 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[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.10"
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 = [
"chipwhisperer",
"colorama",
"cryptography",
"matplotlib",
"numpy",
"pandas",
"Pillow",
"pip",
"pygments",
"pytest",
"pyvisa",
"pyvisa-py",
"scipy",
"semver",
"setuptools",
"tabulate",
"tensorflow",
"termcolor",
"tqdm",
"wheel",
]
[tool.setuptools.dynamic]
version = {attr = "scaaml.__version__"}
[project.optional-dependencies]
[project.scripts]
[project.urls]
"Homepage" = "https://github.com/google/scaaml"
"Bug Tracker" = "https://github.com/google/scaaml"
[tool.setuptools.package-data]
scaaml = ["py.typed"]