-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
65 lines (56 loc) · 1.24 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
[tool.black]
line-length = 160
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| \.history
| \.local
| buck-out
| build
| dist
| migrations
| venv
)/
'''
[tool.isort]
profile = "black"
skip = ["migrations", ".env", "venv", ".local", ".history", ".vscode"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-p no:warnings"
[tool.pytest.ini_options.markers]
integration = "marks tests as integration (deselect with '-m \"not integration\"')"
[tool.poetry]
name = "command-storage"
version = "0.1.3"
description = "A command line tool to store CLI commands for quick access and usage."
authors = ["Ashutosh <[email protected]>"]
readme = "README.md"
[tool.poetry.scripts]
cmds = "command_storage.views.cli:app"
[tool.poetry.dependencies]
python = "^3.9"
typer = "^0.12.0"
pydantic = "^2.6.4"
shellingham = "^1.5.4"
tabulate = "^0.9.0"
thefuzz = "^0.22.1"
pyperclip = "^1.8.2"
[tool.poetry.group.dev.dependencies]
pre-commit = "^4.0.1"
pytest = "^8.1.1"
black = "^24.3.0"
flake8 = "^7.0.0"
isort = "^5.13.2"
typer-cli = "^0.12.0"
coverage = "^7.6.10"
twine = "^6.0.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"