-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
69 lines (57 loc) · 1.59 KB
/
pyproject.toml
File metadata and controls
69 lines (57 loc) · 1.59 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[project]
name = "cairo0-starter"
version = "0.1.0"
description = ""
requires-python = ">=3.10,<3.11"
readme = "README.md"
dependencies = [
"starknet-py>=0.20.0,<0.21",
"cairo-lang>=0.13.2",
"pytest>=8.1.1,<9",
"pytest-asyncio~=0.21.0",
"toml>=0.10.2,<0.11",
"pandas>=1.5.1,<2",
"black>=22.10.0,<23",
"isort>=5.10.1,<6",
"pytest-xdist[psutil]>=3.0.2,<4",
"setuptools>=68.2.0,<69",
"pyperclip>=1.8.2,<2",
"tabulate>=0.9.0,<0.10",
"pytest-env>=1.1.3,<2",
"ipykernel>=6.29.4,<7",
"polars>=1.26.0",
]
[project.scripts]
cairo0-rustlings = "cairo0_rustlings:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["./"]
[tool.pytest.ini_options]
filterwarnings = [
"ignore:Using or importing the ABCs:DeprecationWarning", # from frozendict
"ignore:lexer_state will be removed in subsequent releases. Use lexer_thread instead.", # from lark
"ignore:abi:DeprecationWarning", # from web3
"ignore::marshmallow.warnings.RemovedInMarshmallow4Warning", # from marshmallow
]
pythonpath = ["."]
python_files = "*.py"
asyncio_mode = "auto"
env = [
"PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION = python",
"PYDEVD_WARN_SLOW_RESOLVE_TIMEOUT = 3",
]
[tool.isort]
profile = "black"
[tool.autoflake]
in_place = true
remove_unused_variables = true
remove_all_unused_imports = true
[tool.codespell]
ignore-words = '.codespellignore'
skip = '.git'
check-filenames = ''
check-hidden = ''
[tool.bandit]
exclude_dirs = ["tests"]