Cleanup & build files

This commit is contained in:
2022-10-21 21:01:06 -07:00
parent 8558c484c5
commit e1b79cd59a
17 changed files with 850 additions and 127 deletions

40
pyproject.toml Normal file
View File

@ -0,0 +1,40 @@
[project]
name = "Lamb"
description = "A lambda calculus engine"
version = "0.0.0"
dependencies = [
"prompt-toolkit==3.0.31",
"pyparsing==3.0.9"
]
authors = [
{ name="Mark", email="mark@betalupi.com" }
]
readme = "README.md"
requires-python = ">=3.7"
license = {text = "GNU General Public License v3 (GPLv3)"}
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Environment :: Console"
]
[project.urls]
"Homepage" = "https://git.betalupi.com/Mark/lamb"
[build-system]
requires = [ "setuptools>=61.0" ]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["lamb"]
include = ["lamb*"]
namespaces = false
[project.optional-dependencies]
# Used to build a standalone executable
pyinstaller = [ "pyinstaller==5.5" ]