- Add hybrid PQC using liboqs: ML-DSA-65 (Dilithium) + ML-KEM-768 (Kyber) - Signatures: RSA-PSS + Dilithium (defense-in-depth) - Encryption: ML-KEM-768 (Kyber) + ElGamal - Tests for PQC hybrid operations - Cleanup: remove non-essential scripts and docs - Minimal, production-ready e-voting system
40 lines
827 B
TOML
40 lines
827 B
TOML
[tool.poetry]
|
|
name = "e-voting-system"
|
|
version = "0.1.0"
|
|
description = "Secure Electronic Voting System - Cryptography Project"
|
|
authors = ["CIA Team"]
|
|
license = "MIT"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.12"
|
|
fastapi = "^0.109.0"
|
|
uvicorn = "^0.27.0"
|
|
sqlalchemy = "^2.0.0"
|
|
pymysql = "^1.1.0"
|
|
cryptography = "^41.0.0"
|
|
pydantic = "^2.0.0"
|
|
pydantic-settings = "^2.0.0"
|
|
email-validator = "^2.1.0"
|
|
liboqs-python = "^0.9.0"
|
|
bcrypt = "^4.1.0"
|
|
python-jose = "^3.3.0"
|
|
python-dotenv = "^1.0.0"
|
|
aiofiles = "^23.2.0"
|
|
httpx = "^0.26.0"
|
|
pytest = "^7.4.0"
|
|
pytest-asyncio = "^0.23.0"
|
|
black = "^24.1.0"
|
|
ruff = "^0.2.0"
|
|
mypy = "^1.8.0"
|
|
sympy = "^1.12"
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
pytest = "^7.4.0"
|
|
pytest-cov = "^4.1.0"
|
|
black = "^24.1.0"
|
|
ruff = "^0.2.0"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|