-
Notifications
You must be signed in to change notification settings - Fork 78
/
pyproject.toml
65 lines (58 loc) · 1.4 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 = "flit_core.buildapi"
requires = ["flit_core >=3,<4"]
[mypy]
plugins = "pydantic.mypy"
[project]
authors = [
{name = "Alex Kaszynski", email = "akascap@gmail.com"}
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: End Users/Desktop",
"Topic :: Database :: Front-Ends",
"License :: OSI Approved :: Apache Software License",
"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"
]
dependencies = [
"numpy >=1.9.3",
"requests >=2.2",
"tqdm",
"aiohttp",
"pandas <= 3.0",
"pydantic"
]
description = "Interfaces with keepa.com's API."
dynamic = ["version"]
keywords = ["keepa"]
name = "keepa"
readme = "README.rst"
requires-python = ">=3.9"
[project.optional-dependencies]
doc = [
"sphinx==7.3.7",
"pydata-sphinx-theme==0.15.4",
"numpydoc==1.7.0"
]
test = [
"matplotlib",
"pandas",
"pytest-asyncio",
"pytest-cov",
"pytest"
]
[project.urls]
Documentation = "https://keepaapi.readthedocs.io/en/latest/"
Source = "https://github.com/akaszynski/keepa"
[tool.pytest.ini_options]
addopts = "--cov=keepa --cov-fail-under=85"
testpaths = 'tests'
[tool.ruff]
line-length = 100
[tool.ruff.lint]
ignore = []
select = ["E", "F", "W", "I001"] # pyflakes, pycodestyle, isort