forked from bazingagin/npc_gzip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
50 lines (41 loc) · 1.23 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
48
49
50
[tool.poetry]
name = "npc-gzip"
version = "0.1.1"
description = "Code for Paper: “Low-Resource” Text Classification: A Parameter-Free Classification Method with Compressors"
authors = [
"Gin Jiang <[email protected]>",
"Zach Bloss <[email protected]>",
]
maintainers = [
"Zach Bloss <[email protected]>",
"Gin Jiang <[email protected]>",
]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/bazingagin/npc_gzip"
repository = "https://github.com/bazingagin/npc_gzip"
keywords = ["npc_gzip", "knn-gzip"]
packages = [{include = "npc_gzip"}]
[tool.poetry.dependencies]
python = "^3.9"
numpy = "^1.25.2"
tqdm = "^4.65.0"
[tool.poetry.group.test.dependencies]
pytest = "^7.4.0"
[tool.poetry.group.lint.dependencies]
black = "^23.7.0"
isort = "^5.12.0"
[tool.poetry.group.examples.dependencies]
torchtext = "^0.15.2"
portalocker = "^2.7.0"
scikit-learn = "^1.3.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
addopts = "--doctest-modules --ignore original_codebase/ --ignore examples/"
[tool.isort]
atomic = true
include_trailing_comma = true
line_length = 88 # Match behavior of black.
multi_line_output = 3 # Vertical hanging indent.