-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (42 loc) · 952 Bytes
/
Copy pathpyproject.toml
File metadata and controls
51 lines (42 loc) · 952 Bytes
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
[project]
name = "DexI"
version = "1.1.0"
description = 'Dex Inventory "DexI" package manager for Ballsdex'
requires-python = ">=3.12"
license = "MIT"
dependencies = [
"holidays>=0.81",
"packaging>=25.0",
"requests>=2.32.5",
"rich>=14.1.0",
"tomlkit>=0.13.3",
"typer>=0.19.2",
]
[project.scripts]
dexi = "dexi.app:app"
[build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.build_meta"
[tool.uv]
dev-dependencies = [
"mypy>=1.18.2",
"ruff>=0.13.2",
"types-requests>=2.32.4.20250913",
]
[tool.ruff]
line-length = 90
indent-width = 4
target-version = "py313"
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = true
[tool.ruff.lint]
select = ["E", "F", "I", "W"]
ignore = ["E203"]
[tool.ruff.lint.isort]
split-on-trailing-comma = false
[tool.setuptools.packages.find]
exclude = ["assets", "assets.*"]
[tool.setuptools]
include-package-data = false