-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (45 loc) · 1.27 KB
/
pyproject.toml
File metadata and controls
52 lines (45 loc) · 1.27 KB
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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pdftables-api"
version = "2.1.2"
requires-python = ">=3.10"
description = "PDFTables.com Python API library."
readme = "README.md"
license = { text = "Apache-2.0" }
keywords = ["pdf", "tables", "excel", "csv", "xml", "api"]
authors = [ { name = "Cantabular Ltd", email = "hello@pdftables.com" } ]
urls = { Homepage = "https://pdftables.com/api", Repository = "https://github.com/pdftables/python-pdftables-api.git" }
dependencies = ["requests"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries",
"Topic :: System :: Networking",
]
[dependency-groups]
dev = [
"pytest",
"requests-mock",
"ruff",
]
[tool.pytest.ini_options]
testpaths = ["test"]
python_files = ["test_*.py"]
[tool.ruff]
line-length = 88
[tool.ruff.lint]
# "A": flake8-builtins
# "I": isort
# "UP": pyupgrade
# "W": pycodestyle
extend-select = ["A", "I", "UP", "W"]
[tool.setuptools.packages.find]
where = ["."]
include = ["pdftables_api"]
[tool.uv]
required-version = ">=0.9"