-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
35 lines (31 loc) · 969 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
[tool.poetry]
name = "pyxdu"
version = "1.0.1"
description = "Display the output of \"du\" in a window."
authors = ["Andrey Vlasovskikh <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/vlasovskikh/pyxdu"
keywords = ["gui", "disk-usage", "tkinter", "xdu", "disk-space"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: MacOS X",
"Environment :: X11 Applications",
"Intended Audience :: End Users/Desktop",
"Topic :: Desktop Environment :: File Managers",
"Topic :: System :: Filesystems",
]
[tool.poetry.dependencies]
python = "^3.8"
docopt = "^0.6.2"
[tool.poetry.dev-dependencies]
black = {extras = ["d"], version = ">=22.10.0"}
pytest = "^7.2.0"
coverage = "^6.5.0"
pyinstrument = "^4.0.3"
pre-commit = "^2.11.0"
[tool.poetry.scripts]
pyxdu = "pyxdu.__main__:run"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"