From 2263ead996b401faf27c58da4c2d3fe304d8a45c Mon Sep 17 00:00:00 2001 From: Pelagic Date: Fri, 15 Dec 2023 08:18:29 +0200 Subject: [PATCH] Added the pyproject.toml python build file. --- pyproject.toml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..fe1c973 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,24 @@ +[build-system] +requires = ["hatchling"] +build-backend = "hatchling.build" + +[project] +name = "starfields-logparser" +version = "0.1.0" +authors = [ + { name="Anastasios Svolis", email="support@starfields.gr" }, +] +description = "A basic python library for parsing arbitrary log files" +readme = "README.md" +requires-python = ">=3.8" +classifiers = [ + "Programming Language :: Python :: 3", + "License :: OSI Approved :: MIT License", + "Operating System :: OS Independent", +] + +[project.urls] +"Homepage" = "https://git.vickys-corner.xyz/StarFields/starfields-logparser" + +[tool.setuptools.packages.find] +where = ["starfields_logparser"]