-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
65 lines (55 loc) · 1.58 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
58
59
60
61
62
63
64
65
[build-system]
build-backend = "poetry.core.masonry.api"
requires = [ "poetry-core" ]
[tool.poetry]
name = "federleicht"
version = "0.0.0"
description = "lightweigth function decorators to cache your `pandas.DataFrame` as feather."
authors = [ "Christoph Dörrer <d-chris@web.de>" ]
readme = "README.md"
license = "MIT"
keywords = [ "cache", "feather", "pandas", "pyarrow" ]
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
exclude = [ "tests", "docs" ]
[tool.poetry.urls]
Repository = "https://github.com/d-chris/federleicht"
Documentation = "https://d-chris.github.io/federleicht"
[tool.poetry.dependencies]
python = "^3.9"
pathlibutil = ">=0.3.0"
pandas = { extras = [ "feather" ], version = ">=2.0.0" }
xxhash = { version = "^3.5.0", optional = true }
[tool.poetry.extras]
xxhash = [ "xxhash" ]
[tool.poetry.group.test.dependencies]
pytest = "^8.0.0"
pytest-cov = "^6.0.0"
pytest-mock = "^3.14.0"
pytest-randomly = "^3.16.0"
[tool.poetry.group.dev.dependencies]
tox = "^4.23.2"
[tool.poetry.group.docs.dependencies]
pdoc = "^15.0.0"
jinja2-pdoc = "^1.3.0"
[tool.isort]
profile = "black"
[tool.pytest.ini_options]
minversion = "6.0"
testpaths = "tests"
addopts = [
"-s",
"--color=yes",
"--cov=federleicht",
"--cov-report=term-missing:skip-covered",
"--cov-report=xml",
]
[tool.coverage.run]
omit = [ "tests/*", "docs/*" ]