-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
81 lines (70 loc) · 2.02 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
[build-system]
requires = ["setuptools>=68.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.uv]
# Configuration for UV package build
package = true
[project]
name = "reclaimed"
dynamic = ["version"]
description = "A powerful disk usage analyzer with iCloud support"
readme = "README.md"
requires-python = ">=3.8"
authors = [
]
keywords = ["disk", "storage", "analyzer", "icloud", "cli"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: System :: Systems Administration",
"Topic :: Utilities",
]
dependencies = [
"click>=8.0.0",
"rich>=10.0.0",
"textual>=0.52.1",
"typing_extensions>=4.12.2"
]
[project.urls]
Homepage = "https://github.com/taylorwilsdon/reclaimed"
Repository = "https://github.com/taylorwilsdon/reclaimed.git"
Issues = "https://github.com/taylorwilsdon/reclaimed/issues"
[project.scripts]
reclaimed = "reclaimed.cli:main"
[tool.setuptools]
packages = ["reclaimed", "reclaimed.core", "reclaimed.io", "reclaimed.metrics", "reclaimed.ui", "reclaimed.utils"]
[tool.setuptools.dynamic]
version = {attr = "reclaimed.version.__version__"}
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q"
testpaths = [
"tests",
]
[tool.mypy]
python_version = "3.8"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
check_untyped_defs = true
namespace_packages = true
explicit_package_bases = true
mypy_path = "."
[tool.black]
line-length = 100
target-version = ['py38']
[tool.ruff]
line-length = 100
target-version = "py38"
[tool.ruff.lint]
select = ["E", "F", "B", "I"]