This repository has been archived on 2024-11-05. You can view files and clone it, but cannot push or open issues/pull-requests.
2022-11-11 18:19:38 -08:00
|
|
|
[build-system]
|
|
|
|
requires = [ "setuptools>=61.0" ]
|
|
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
|
|
|
|
[tool.setuptools.packages.find]
|
|
|
|
where = [ "." ]
|
|
|
|
include = ["lamb_engine*"]
|
|
|
|
namespaces = false
|
|
|
|
|
|
|
|
[project.scripts]
|
|
|
|
lamb = "lamb_engine:main"
|
2022-10-28 20:45:39 -07:00
|
|
|
|
|
|
|
|
2022-11-11 18:19:38 -08:00
|
|
|
|
|
|
|
[project]
|
|
|
|
name = "lamb_engine"
|
|
|
|
description = "A lambda calculus engine"
|
2023-04-02 20:54:26 -07:00
|
|
|
version = "1.1.9"
|
2022-10-21 21:01:06 -07:00
|
|
|
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"
|
|
|
|
|
2022-11-11 18:19:38 -08:00
|
|
|
# To build:
|
|
|
|
# pip install build twine
|
|
|
|
# python -m build
|
2022-11-11 18:32:40 -08:00
|
|
|
# twine upload dist/lamb_engine-1.1.6* (change the version)
|