aboutsummaryrefslogtreecommitdiff
path: root/pyproject.toml
blob: ef013a41ed10a0dbdfe5c2df8838170df21f2d41 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
[tool.poetry]
name = "crowbar-reference-compiler"
version = "0.0.1"
description = "the reference compiler for the Crowbar programming language"
authors = ["Melody Horn <melody@boringcactus.com>"]
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"