From f2c203af9cceac7c0ade62977a6935abe491b609 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Dausseur?= Date: Wed, 26 Apr 2023 11:39:34 +0200 Subject: [PATCH] added the package creation tool --- .gitignore | 2 ++ pyproject.toml | 17 +++++++++++++++++ 2 files changed, 19 insertions(+) create mode 100644 pyproject.toml diff --git a/.gitignore b/.gitignore index 5d381cc..147ed61 100644 --- a/.gitignore +++ b/.gitignore @@ -9,6 +9,7 @@ __pycache__/ # Distribution / packaging .Python +bin/ build/ develop-eggs/ dist/ @@ -17,6 +18,7 @@ eggs/ .eggs/ lib/ lib64/ +include/ parts/ sdist/ var/ diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..ca5811c --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,17 @@ +[project] +name = "pyappengine" +version = "0.0.1" +authors = [ + { name="François Dausseur", email="fdausseur@free.fr" }, +] +description = "Python application engine" +readme = "README.md" +requires-python = ">=3.7" +classifiers = [ + "Programming Language :: Python :: 3", + "License :: OSI Approved :: CeCILL-C", + "Operating System :: OS Independent", +] + +[project.urls] +"Homepage" = "https://git.beafrancois.fr/Foue/pyappengine"