- FastAPI backend with JWT authentication - ElGamal, RSA-PSS, ZK-proofs crypto modules - HTML5/JS frontend SPA - MariaDB database with 5 tables - Docker Compose with 3 services (frontend, backend, mariadb) - Comprehensive tests for cryptography - Typst technical report (30+ pages) - Makefile with development commands
39 lines
802 B
TOML
39 lines
802 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"
|
|
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"
|