From a3300dfb6d6821e31eb1b2f090f736f2f99529ca Mon Sep 17 00:00:00 2001 From: mudler Date: Sun, 20 Aug 2023 12:00:44 +0200 Subject: [PATCH] Add pyproject --- pyproject.toml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..79c37b5 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,22 @@ +[build-system] +requires = ["hatchling"] +build-backend = "hatchling.build" + +[project] +name = "localagi" +version = "0.0.1" +authors = [ + { name="Ettore Di Giacinto", email="mudler@localai.io" }, +] +description = "LocalAGI" +readme = "README.md" +requires-python = ">=3.10" +classifiers = [ + "Programming Language :: Python :: 3", + "License :: OSI Approved :: MIT License", + "Operating System :: OS Independent", +] + +[project.urls] +"Homepage" = "https://github.com/mudler/LocalAGI" +"Bug Tracker" = "https://github.com/mudler/LocalAGI/issues" \ No newline at end of file