-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
35 lines (30 loc) · 820 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 = "chunksum"
version = "0.6.0"
description = "Print FastCDC rolling hash chunks and checksums."
authors = ["Xie Yanbo <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/xyb/chunksum"
repository = "https://github.com/xyb/chunksum"
classifiers = [
"Environment :: Console",
"Development Status :: 4 - Beta",
"Topic :: Utilities",
]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/xyb/chunksum/issues"
[tool.poetry.scripts]
chunksum = 'chunksum.cli:main'
[tool.poetry.dependencies]
python = "^3.7"
fastcdc = "^1.4.2"
tqdm = "^4.64.1"
wcwidth = "^0.2.5"
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.0"
pre-commit = "^2.20.0"
pytest-coverage = "^0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"