initial commit

This commit is contained in:
Walter Oggioni
2024-02-14 08:38:15 +08:00
parent 911419f30a
commit 336e4e8360
6 changed files with 325 additions and 0 deletions

28
pyproject.toml Normal file
View File

@@ -0,0 +1,28 @@
[build-system]
requires = ["setuptools>=65.0"]
build-backend = "setuptools.build_meta"
[project]
name = "sspoc"
version = "0.0.1"
authors = [
{ name="Walter Oggioni", email="walter.oggioni@accenture.com" },
]
description = "Session security POC"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"flask >= 3.0",
'cryptography>=42.0.0',
]
[tool.setuptools.package-data]
sspoc = ['static/**/*']
[project.scripts]
session-security-poc-server = "sspoc.server:main"