-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (49 loc) · 1.17 KB
/
pyproject.toml
File metadata and controls
55 lines (49 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
54
55
[build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.build_meta"
[project]
name = "deploy"
version = "0.1.0"
description = "Seismic node deployment tool for GCP"
requires-python = ">=3.12"
dependencies = [
"ruff>=0.8.0",
"certifi>=2025.10.5",
"charset-normalizer>=3.4.4",
"click>=8.3.0",
"idna>=3.11",
"mypy-extensions>=1.1.0",
"packaging>=25.0",
"pathspec>=0.12.1",
"platformdirs>=4.5.0",
"pydantic>=2.0",
"pyright>=1.1.406",
"requests>=2.32.5",
"urllib3>=2.5.0",
"google-cloud-compute>=1.22.0",
"google-cloud-storage>=2.18.0",
"google-cloud-resource-manager>=1.12.0",
"seismic-web3",
"eth-account>=0.13.0",
]
[project.scripts]
seismic-deploy = "deploy_gcp.seismic_deploy.cli:cli"
[tool.setuptools.packages.find]
include = ["deploy_gcp*"]
[tool.ruff]
line-length = 88
target-version = "py313"
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"B", # flake8-bugbear
"C4", # flake8-comprehensions
"UP", # pyupgrade
]
ignore = []
[tool.ruff.format]
quote-style = "double"
indent-style = "space"