From 732ef5e9787e618ead3a18f9f6aa2ed1f03f1670 Mon Sep 17 00:00:00 2001 From: Melody Horn Date: Wed, 14 Oct 2020 17:44:38 -0600 Subject: throw early draft of parser into the world --- pyproject.toml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 pyproject.toml (limited to 'pyproject.toml') diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..ef013a4 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,26 @@ +[tool.poetry] +name = "crowbar-reference-compiler" +version = "0.0.1" +description = "the reference compiler for the Crowbar programming language" +authors = ["Melody Horn "] +license = "BlueOak-1.0.0" +readme = "README.md" +repository = "https://git.sr.ht/~boringcactus/crowbar-reference-compiler" +classifiers = [ + "Development Status :: 2 - Pre-Alpha", + "Intended Audience :: Developers", + "Programming Language :: Other", + "Topic :: Software Development :: Compilers", +] + +[tool.poetry.dependencies] +python = "^3.7" +parsimonious = "^0.8.1" +regex = "^2020.10.11" + +[tool.poetry.dev-dependencies] +mypy = "^0.790" + +[build-system] +requires = ["poetry-core>=1.0.0"] +build-backend = "poetry.core.masonry.api" -- cgit v1.2.3