-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
47 lines (43 loc) · 1.07 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
[tool.poetry]
name = "pathlib-tree"
version = "2.4.9"
description = "Filesystem tree utilities"
authors = ["Ilkka Tuohela <[email protected]>"]
readme = "README.md"
homepage = "https://github.com/hile/pathlib-tree"
include = [
"LICENSE",
]
license = "BSD-3-Clause"
classifiers = [
"Environment :: Console",
"License :: OSI Approved :: BSD License",
"Operating System :: MacOS",
"Operating System :: POSIX",
"Operating System :: Unix",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Utilities",
]
[tool.poetry.dependencies]
python = "^3.9 <3.12"
filemagic = "^1.6"
cli-toolkit = "^2"
python-magic-bin = {version = "^0.4.14", platform = "win32"}
[tool.poetry.group.dev.dependencies]
coverage = "^7"
flake8 = "^6"
flake8-bugbear = "^22"
flake8-quotes = "^3"
pycodestyle = "^2"
pyflakes = "^3"
pylint = "^2"
pytest = "^7"
tox = "^4"
ruff = "^0.0.261"
[tool.ruff]
line-length = 120
[build-system]
requires = ["poetry-core>=1.5.2"]
build-backend = "poetry.core.masonry.api"