A Python port of the Invisible Internet Project (I2P)
1[build-system]
2requires = ["hatchling"]
3build-backend = "hatchling.build"
4
5[project]
6name = "i2p-crypto"
7version = "0.1.0"
8description = "I2P cryptographic primitives — meta-package"
9requires-python = ">=3.11"
10license = {text = "MIT"}
11authors = [{name = "bimo.studio", email = "hello@bimo.studio"}]
12readme = "README.md"
13classifiers = [
14 "Development Status :: 3 - Alpha",
15 "Programming Language :: Python :: 3",
16 "Programming Language :: Python :: 3.11",
17 "License :: OSI Approved :: MIT License",
18 "Topic :: Internet",
19 "Topic :: Security :: Cryptography",
20]
21dependencies = [
22 "i2p-py-crypto-aes>=0.1.0",
23 "i2p-py-crypto-chacha>=0.1.0",
24 "i2p-py-crypto-dsa>=0.1.0",
25 "i2p-py-crypto-eddsa>=0.1.0",
26 "i2p-py-crypto-elgamal>=0.1.0",
27 "i2p-py-crypto-garlic>=0.1.0",
28 "i2p-py-crypto-hash>=0.1.0",
29 "i2p-py-crypto-hkdf>=0.1.0",
30 "i2p-py-crypto-hmac>=0.1.0",
31 "i2p-py-crypto-mlkem>=0.1.0",
32 "i2p-py-crypto-noise>=0.1.0",
33 "i2p-py-crypto-session-keys>=0.1.0",
34 "i2p-py-crypto-siphash>=0.1.0",
35 "i2p-py-crypto-x25519>=0.1.0",
36]
37
38[project.urls]
39Repository = "https://github.com/Bimo-Studio/i2p-python"