-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (29 loc) · 791 Bytes
/
pyproject.toml
File metadata and controls
36 lines (29 loc) · 791 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
[project]
name = "command-line-file-manager"
version = "2.1.3"
authors = [
{ name = "kaliv0", email = "kaloyan.ivanov88@gmail.com" }
]
readme = "README.md"
license = { text = "MIT" }
description = "CLI tool for managing local file system storage"
keywords = ["file manager", "cli tool", "command line interface"]
[project.urls]
Repository = "https://github.com/kaliv0/command-line-file-manager.git"
[project.scripts]
fm = "file_manager.cli:fm"
[tool.poetry.dependencies]
python = "^3.12"
click = "^8.1.8"
pyyaml = "^6.0.2"
[tool.poetry.group.dev.dependencies]
ruff = "^0.6.3"
[tool.ruff]
lint = {ignore = ['E731']}
fix = true
line-length = 110
[tool.poetry]
packages = [{include="file_manager"}]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"