added publication stuff

This commit is contained in:
JOLIMAITRE Matthieu 2024-05-30 01:37:15 +02:00
parent a49b14c12c
commit 0f58f26bd4
8 changed files with 94 additions and 2 deletions

27
pyproject.toml Normal file
View file

@ -0,0 +1,27 @@
[project]
name = "pyalibert"
version = "1.0.0"
description = "PyAlibert is a fully typed parser combinator library written in python."
keywords = ["parsing", "functional", "library", "typed", "minimal"]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
readme = "README.md"
license = { file = "LICENSE" }
authors = [{ name = "Matthieu Jolimaitre", email = "matthieu@imagevo.fr" }]
dependencies = []
requires-python = ">=3.9"
[project.urls]
Homepage = "https://git.barnulf.net/mb/pyalibert"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"