-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
38 lines (31 loc) · 874 Bytes
/
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
[tool.poetry]
name = "lssr"
version = "1.3.0"
description = "Alternative ls command."
license = "MIT"
authors = ["seijinrosen <86702775+seijinrosen@users.noreply.github.com>"]
readme = "README.md"
homepage = "https://github.com/seijinrosen"
repository = "https://github.com/seijinrosen/lssr"
documentation = "https://github.com/seijinrosen/lssr"
[tool.poetry.dependencies]
python = "^3.9"
rich = ">=12.4.4,<14.0.0"
[tool.poetry.group.dev.dependencies]
bandit = "^1.7.4"
black = ">=22.12,<26.0"
isort = ">=5.11.2,<7.0.0"
pyperclip = "^1.8.2"
pytest = ">=7.2,<9.0"
pytest-cov = ">=4,<7"
pytest-mock = "^3.10.0"
tox = "^4.0.11"
[tool.poetry.scripts]
lssr = "lssr.__main__:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.coverage.report]
exclude_lines = ['if __name__ == "__main__":']
[tool.isort]
profile = "black"