initial commit
This commit is contained in:
28
pyproject.toml
Normal file
28
pyproject.toml
Normal 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"
|
Reference in New Issue
Block a user