-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (65 loc) · 1.5 KB
/
pyproject.toml
File metadata and controls
73 lines (65 loc) · 1.5 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
70
71
72
73
[project]
name = "pytempo"
version = "0.4.0"
description = "Web3.py extension for Tempo blockchain - adds support for AA transactions and Tempo-specific features"
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"web3>=7.0.0",
"eth-account>=0.11.0",
"eth-utils>=4.0.0",
"rlp>=4.0.0",
"attrs>=23.0.0",
]
authors = [
{name = "Tempo"}
]
license = {text = "MIT OR Apache-2.0"}
classifiers = [
"License :: OSI Approved :: MIT License",
"License :: OSI Approved :: Apache Software License",
]
[project.urls]
Homepage = "https://github.com/tempoxyz/pytempo"
Documentation = "https://github.com/tempoxyz/pytempo#readme"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build]
exclude = [".jj"]
artifacts = ["pytempo/contracts/abis/*.json"]
[tool.ruff]
line-length = 88
target-version = "py39"
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"B", # flake8-bugbear
"C4", # flake8-comprehensions
"UP", # pyupgrade
]
ignore = [
"E501", # line too long (handled by formatter)
]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
[tool.pytest.ini_options]
filterwarnings = [
"ignore::DeprecationWarning:websockets.legacy",
]
[dependency-groups]
dev = [
"pytest>=8.4.2",
"ruff>=0.14.6",
]
docs = [
"sphinx>=7.0",
"furo>=2024.0",
"myst-parser>=2.0",
"sphinx-autodoc-typehints>=2.0",
"sphinx-copybutton>=0.5",
]