-
Notifications
You must be signed in to change notification settings - Fork 90
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (44 loc) · 1.17 KB
/
pyproject.toml
File metadata and controls
53 lines (44 loc) · 1.17 KB
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
[build-system]
requires = ["uv_build>=0.6,<0.10"]
build-backend = "uv_build"
[project]
name = "crytic-compile"
version = "0.3.11"
description = "Util to facilitate smart contracts compilation."
readme = "README.md"
license = "AGPL-3.0-only"
requires-python = ">=3.10,!=3.12.0"
authors = [{ name = "Trail of Bits" }]
classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
dependencies = [
"pycryptodome>=3.4.6",
"cbor2",
"solc-select>=1.0.4",
]
[project.urls]
Homepage = "https://github.com/crytic/crytic-compile"
[project.optional-dependencies]
test = ["pytest", "pytest-cov"]
lint = ["ruff>=0.8", "ty"]
doc = ["pdoc"]
dev = ["crytic-compile[test,lint,doc]"]
[project.scripts]
crytic-compile = "crytic_compile.__main__:main"
[tool.uv.build-backend]
module-root = ""
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "W", "I", "UP"]
ignore = ["E501"]
[tool.ruff.format]
quote-style = "double"
[tool.ty.environment]
python-version = "3.10"