-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
35 lines (29 loc) · 883 Bytes
/
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
[project]
name = "default"
version = "0.1.0"
description = "This repository contains configurations to set up a Python development environment using VSCode's Dev Container feature. The environment includes uv and Ruff."
authors = [{ name = "a5chin", email = "a5chin.origin+contact@gmail.com" }]
maintainers = [{ name = "a5chin", email = "a5chin.origin+contact@gmail.com" }]
requires-python = ">=3.9"
readme = "README.md"
license = { file = "LICENSE" }
dependencies = [
"eth-account>=0.13.4",
"pillow>=11.0.0",
"pyright>=1.1.390",
"pytz>=2024.2",
"qrcode>=8.0",
"setuptools>=75.6.0",
]
[build-system]
requires = ["setuptools>=63.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[tool.uv]
dev-dependencies = [
"pre-commit>=4.0.1",
"pyright>=1.1.390",
"pytest>=8.3.3",
"ruff>=0.8.0",
]