-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
122 lines (113 loc) · 3.36 KB
/
pyproject.toml
File metadata and controls
122 lines (113 loc) · 3.36 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "tagmanager-cli"
version = "1.9.4"
description = "The Ultimate Command-Line File Tagging System - Transform chaos into order with intelligent file organization"
readme = "README.md"
license = {text = "MIT"}
authors = [
{name = "David Chincharashvili", email = "david@example.com"}
]
maintainers = [
{name = "David Chincharashvili", email = "david@example.com"}
]
keywords = [
"file-management",
"tagging",
"organization",
"cli",
"productivity",
"file-system",
"search",
"metadata"
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: System :: Filesystems",
"Topic :: Utilities",
"Topic :: System :: Systems Administration",
"Topic :: Software Development :: Libraries :: Python Modules"
]
requires-python = ">=3.7"
dependencies = [
"typer>=0.9.0",
"rich>=10.0.0"
]
[project.optional-dependencies]
watch = [
"watchdog>=2.0.0"
]
mcp = [
"mcp>=1.4.0"
]
test = [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
"mcp>=1.4.0"
]
dev = [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
"black>=22.0.0",
"flake8>=5.0.0",
"watchdog>=2.0.0"
]
[project.urls]
Homepage = "https://github.com/davidtbilisi/TagManager"
Documentation = "https://github.com/davidtbilisi/TagManager#readme"
Repository = "https://github.com/davidtbilisi/TagManager.git"
"Bug Tracker" = "https://github.com/davidtbilisi/TagManager/issues"
Changelog = "https://github.com/davidtbilisi/TagManager/releases"
[project.scripts]
tm = "tagmanager.cli:main"
tagmanager = "tagmanager.cli:main"
tm-mcp = "tagmanager.mcp_stdio:main"
[tool.setuptools]
packages = ["tagmanager", "tagmanager.app", "tagmanager.app.add", "tagmanager.app.alias",
"tagmanager.app.autotag", "tagmanager.app.bulk",
"tagmanager.app.config", "tagmanager.app.filter", "tagmanager.app.list_all",
"tagmanager.app.move", "tagmanager.app.paths", "tagmanager.app.preset",
"tagmanager.app.remove", "tagmanager.app.saved_search", "tagmanager.app.search",
"tagmanager.app.stats", "tagmanager.app.storage", "tagmanager.app.tags",
"tagmanager.app.visualization", "tagmanager.app.graph", "tagmanager.app.watch",
"tagmanager.app.exportdata", "tagmanager.app.journal", "tagmanager.app.doctor"]
[tool.setuptools.package-data]
"tagmanager" = ["*.ini", "*.json"]
"tagmanager.app" = ["thin_gui.html", "preview_page.html"]
[tool.black]
line-length = 88
target-version = ['py37']
include = '\.pyi?$'
extend-exclude = '''
/(
# directories
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| build
| dist
)/
'''
[tool.mypy]
python_version = "1.8.0"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true