added the package creation tool

This commit is contained in:
François Dausseur
2023-04-26 11:39:34 +02:00
parent 48c59104ee
commit f2c203af9c
2 changed files with 19 additions and 0 deletions

2
.gitignore vendored
View File

@@ -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/

17
pyproject.toml Normal file
View File

@@ -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"