-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
52 lines (46 loc) · 1.11 KB
/
pyproject.toml
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
extend-exclude = '''
/(
\.git
| \.venv
| build
| dist
)/
'''
[tool.isort]
profile = "black"
skip_gitignore = true
[tool.poetry]
name = "horus-compile"
version = "0.0.6.13"
authors = ["Nethermind <[email protected]>"]
description = "Use formally verified annotations in your Cairo code"
classifiers = [
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: Apache Software License",
]
packages = [ { include = "horus", from = "src" } ]
include = [ "src/horus/compiler/horus.ebnf" ]
readme = "README.md"
license = "APACHE LICENSE, VERSION 2.0"
maintainers = [
"Ganesh Tiwari <[email protected]>",
"Ilia Vlasov <[email protected]>"
]
[tool.poetry.scripts]
horus-compile = "horus.compiler.horus_compile:run"
[tool.poetry.dependencies]
python = ">=3.7,<3.10"
cairo-lang = "0.10.1"
marshmallow-dataclass = ">=7.1.0,<8.5.4"
eth-utils = "^1.2.0"
marshmallow = "^3.15.0"
z3-solver = "^4.8.15"
lark = "^1.1.4"
[tool.poetry.dev-dependencies]
isort = "*"
black = "*"
autopep8 = "^1.6.0"