pyproject.toml to prepare this code for packaging (tried it before with other test folder)

This commit is contained in:
Joost Agterhoek 2025-04-22 20:52:12 +02:00
parent 45ee9539bf
commit 84b39e15c9

21
pyproject.toml Normal file
View File

@ -0,0 +1,21 @@
[project]
name = "flask_soc_site"
version = "1.0"
description = "A Flask project to learn API's and basic web for work in a SOC."
dependencies = [
"flask",
"python-whois",
"dotenv",
"requests_cache",
"ipwhois",
"validators",
"checkdmarc",
"tldextract",
]
[build-system]
requires = ["flit_core<4"]
build-backend = "flit_core.buildapi"
[tool.flit.module]
name = "flask_soc_site"