-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
54 lines (49 loc) · 1.13 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
53
54
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "openzeppelin-solidity-grammar-parser"
version = "0.0.4"
authors = [{ name = "Georgii Plotnikov", email = "[email protected]" }]
description = "Solidity ANTLR4 grammar Python parser"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"antlr4-python3-runtime == 4.13.1",
"coverage == 7.3.1",
"simplejson == 3.19.1",
"typing == 3.7.4.3",
"typing_extensions == 4.8.0",
]
[project.urls]
"Homepage" = "https://github.com/OpenZeppelin/sgp"
"Bug Tracker" = "https://github.com/OpenZeppelin/sgp/issues"
[tool.setuptools.packages.find]
where = ["."]
include = ["sgp*"]
[tool.black]
line-length = 88
exclude = '''
(
/(
\.git
| \.venv
| \.env
| \.eggs
| \.mypy_cache
| \.pytest_cache
| _build
| buck-out
| build
| dist
| venv
)/
)
'''
[tool.ruff]
exclude = ["./sgp/parser/"]