-
Notifications
You must be signed in to change notification settings - Fork 285
/
pyproject.toml
41 lines (35 loc) · 1017 Bytes
/
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
[build-system]
requires = ["setuptools >= 61.0", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
#version = "0.0.1" # Remove any existing version parameter.
dynamic = ["version"]
description="ChipWhisperer Side-Channel Analysis Tool"
name = "chipwhisperer"
authors=[{name="Colin O'Flynn", email="coflynn@newae.com"}]
requires-python = ">=3.9"
dependencies = [
"configobj",
"pyserial",
"numpy",
"libusb1",
"ECpy",
"fastdtw",
"Cython",
"tqdm",
"libusb1",
]
license = {file = "LICENSE.txt"}
readme = "README.md"
[project.optional-dependencies]
trace = ["software"]
[project.urls]
Homepage = "https://www.chipwhisperer.com"
Documentation = "https://chipwhisperer.readthedocs.io/en/latest/"
Repository = "https://github.com/newaetech/chipwhisperer"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["software"]
[tool.setuptools.dynamic]
version = {attr = "chipwhisperer.__version__"}