forked from pls-rs/pls
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
39 lines (31 loc) · 837 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
39
[tool.poetry]
name = "pls"
description = "`pls` is a prettier and powerful `ls` for the pros."
version = "4.0.2"
authors = ["Dhruv Bhanushali"]
license = "GPL-3.0-or-later"
readme = "README.md"
homepage = "https://dhruvkb.github.io/pls"
repository = "https://github.com/dhruvkb/pls"
documentation = "https://dhruvkb.github.io/pls"
[tool.poetry.scripts]
pls = "pls.main:main"
pls-dev = "pls.main:dev"
[tool.poetry.dependencies]
python = "^3.8"
PyYAML = "^6.0"
rich = "^12.0.0"
[tool.poetry.dev-dependencies]
pre-commit = "^2.17.0"
ipython = "^8.0.1"
pytest = "^7.0.0"
pytest-lazy-fixture = "^0.6.3"
freezegun = "^1.1.0"
jsonschema = "^4.4.0"
requests = "^2.27.1"
pytest-cov = "^3.0.0"
[tool.pytest.ini_options]
cache_dir = ".pytest_cache"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"