-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (64 loc) · 1.83 KB
/
pyproject.toml
File metadata and controls
73 lines (64 loc) · 1.83 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[build-system]
requires = ["hatchling>=1.24.0"]
build-backend = "hatchling.build"
[project]
name = "excel-dbapi"
version = "0.4.1"
description = "PEP 249 compliant DB-API driver for Excel files"
readme = { file = "README.md", content-type = "text/markdown" }
license = "MIT"
requires-python = ">=3.10"
keywords = ["excel", "db-api", "sql", "openpyxl", "pandas"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Database",
"Topic :: Software Development :: Libraries",
]
dependencies = ["openpyxl>=3.1.0,<4.0.0"]
[[project.authors]]
name = "Yeongseon Choe"
email = "[email protected]"
[project.urls]
Homepage = "https://github.com/yeongseon/excel-dbapi"
Repository = "https://github.com/yeongseon/excel-dbapi"
Issues = "https://github.com/yeongseon/excel-dbapi/issues"
Changelog = "https://github.com/yeongseon/excel-dbapi/blob/main/CHANGELOG.md"
[project.optional-dependencies]
pandas = ["pandas>=2.0.0,<3.0.0"]
graph = ["httpx>=0.27"]
graph-azure = ["httpx>=0.27", "azure-identity>=1.15"]
dev = [
"pytest>=8.0",
"pytest-cov>=4.0",
"ruff>=0.4",
"mypy>=1.10",
"httpx>=0.27",
"pre-commit>=3.0",
"build>=1.0",
"hypothesis>=6.0",
]
[tool.hatch.build.targets.wheel]
packages = ["src/excel_dbapi"]
[tool.mypy]
ignore_missing_imports = true
strict = true
[tool.pytest.ini_options]
pythonpath = ["src"]
[tool.coverage.run]
source = ["excel_dbapi"]
branch = true
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"if TYPE_CHECKING:",
"if __name__",
"@overload",
]