-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (34 loc) · 1.25 KB
/
pyproject.toml
File metadata and controls
40 lines (34 loc) · 1.25 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
[build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.build_meta"
[project]
name = "nade-python"
version = "0.0.2"
description = "Nade Protocol (Noise-Authenticated Duplex Encryption) Python Implementation - Including the DryBox Adapter"
authors = [{name="Florian Griffon"}, {name="Icing Project"}, {name="STCB"}]
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"cryptography>=45.0.7",
"numpy>=2.3.3",
"dissononce>=0.34.3",
"PyYAML>=6.0",
"cffi>=1.17.0",
# liquid-dsp optional on Windows (bundled), required elsewhere
"liquid-dsp>=1.6.0 ; sys_platform != 'win32'",
"pytest>=8.3.3",
]
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
include = ["nade", "nade.*", "adapter", "adapter.*"]
[tool.setuptools.package-data]
nade = ["_vendor/**/*", "_vendor/liquid/*"]
[project.entry-points."drybox.adapters"]
# DryBox v1 currently loads adapters via module path specs (path/to/file.py:Class).
# Keep entry point for future discovery compatibility, pointing to the actual module path.
nade-python = "adapter.drybox_adapter:Adapter"
# (optionnel selon runner)
[project.entry-points."nade.dev"]
nade = "nade.nade:StateMachine"