This repository has been archived on 2024-11-05. You can view files and clone it, but cannot push or open issues/pull-requests.
lamb/pyproject.toml

54 lines
1.1 KiB
TOML
Raw Normal View History

2022-10-21 21:01:06 -07:00
[project]
name = "Lamb"
description = "A lambda calculus engine"
2022-10-28 20:45:39 -07:00
# We use the standard semantic versioning:
# maj.min.pat
#
# Major release:
# 1.0.0 is the first stable release.
# Incremented on BIG breaking changes.
#
# Minor release:
# Large bug fixes, new features
#
# Patch release:
# Small, compatible fixes.
2022-10-29 13:25:37 -07:00
version = "0.1.1"
2022-10-28 20:45:39 -07:00
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"
[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" ]