-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (62 loc) · 2.05 KB
/
pyproject.toml
File metadata and controls
70 lines (62 loc) · 2.05 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
[project]
name = "excel-to-sql"
version = "0.4.1"
description = "CLI tool and Python SDK for importing Excel files to SQLite with advanced transformations and validation"
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [
{ name = "Code with dave", email = "davidddpereiraaa6@gmail.com" }
]
keywords = ["excel", "sql", "sqlite", "cli", "etl", "import", "export", "data-validation", "data-quality", "transformations"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Database",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"typer>=0.12.0",
"pydantic>=2.0.0",
"pandas>=2.0.0",
"openpyxl>=3.0.0",
"sqlalchemy>=2.0.0",
"rich>=13.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=9.0.2",
"pytest-cov>=7.0.0",
]
[project.scripts]
excel-to-sql = "excel_to_sql.cli:app"
[project.urls]
Homepage = "https://github.com/wareflowx/excel-to-sql"
Repository = "https://github.com/wareflowx/excel-to-sql"
Documentation = "https://github.com/wareflowx/excel-to-sql/blob/main/README.md"
Issues = "https://github.com/wareflowx/excel-to-sql/issues"
Changelog = "https://github.com/wareflowx/excel-to-sql/blob/main/CHANGELOG.md"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["excel_to_sql"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = "-v --strict-markers --cov=excel_to_sql --cov-report=term-missing --cov-report=html"
[dependency-groups]
dev = [
"pytest>=9.0.2",
"pytest-cov>=7.0.0",
]