-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
57 lines (50 loc) · 1.11 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
51
52
53
54
55
56
57
# SPDX-FileCopyrightText: 2023 hugues de keyzer
#
# SPDX-License-Identifier: AGPL-3.0-or-later
[tool.poetry]
name = "tabeltekstilo"
version = "1.1.0"
description = "multi-purpose tool for manipulating text in tabular data format"
authors = ["hugues de keyzer"]
license = "AGPL-3.0-or-later"
readme = "readme.md"
keywords = [
"alphabetical",
"index",
"indexer",
"pandas",
"spreadsheet",
"tabular",
"text",
"xml",
]
classifiers = [
"Topic :: Text Processing :: General",
"Topic :: Text Processing :: Indexing",
]
include = [
"changelog.md",
"tests",
]
[tool.poetry.dependencies]
python = "^3.9"
pandas = "2.0.3"
odfpy = "1.4.1"
openpyxl = "3.1.2"
numpy = "1.24.4"
pyuca = "1.2"
[tool.poetry.dev-dependencies]
pytest = "7.4.0"
pre-commit = "3.3.3"
pytest-mock = "3.11.1"
pytest-cov = "4.1.0"
[tool.poetry.scripts]
tabeltekstilo = "tabeltekstilo.cli:main"
[tool.ruff]
line-length = 79
[tool.ruff.lint]
select = ["F", "E", "W", "I", "N", "UP", "YTT", "B", "SIM", "PL"]
ignore = ["UP030", "UP032"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"