-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
62 lines (54 loc) · 1.38 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
55
56
57
58
59
60
61
62
[project]
name = "gaboon"
version = "0.1.0"
description = "Pythonic smart contract development framework using Titanoboa"
authors = [
{ name = "PatrickAlphac", email = "[email protected]" },
{ name = "charles-cooper", email = "[email protected]" },
]
dependencies = [
"titanoboa>=0.2.2",
"python-dotenv>=1.0.1",
"tomli-w>=1.0.0",
"titanoboa-zksync>=v0.2.2",
]
readme = "README.md"
requires-python = ">= 3.11"
[tool.uv]
managed = true
package = true
dev-dependencies = [
"gaboon>=0.1",
"pytest>=8.3.2",
"mypy>=1.11.0",
"snekmate>=0.1.0",
"vyper>=0.4.0",
"web3>=7.0.0b9",
"ruff>=0.6.3",
]
[project.scripts]
"gab" = "gaboon:main"
[project.optional-dependencies]
docs = [
"sphinx>=8.0.2",
"shibuya>=2024.8.30",
"sphinx-argparse>=0.5.2",
"sphinx-copybutton>=0.5.2",
"sphinx-multiversion>=0.2.4",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["gaboon"]
[tool.mypy]
disable_error_code = 'type-arg, attr-defined'
ignore_missing_imports = true
exclude = [
'tests/', # Excludes all files in the tests directory
'(^|/)test_.*\.py$', # Excludes files that start with test_
]
[tool.pytest.ini_options]
addopts = "--ignore=tests/data/"