Initial commit
This commit is contained in:
73
pyproject.toml
Executable file
73
pyproject.toml
Executable file
@@ -0,0 +1,73 @@
|
||||
[project]
|
||||
name = "data-regression-tester"
|
||||
version = "1.0.0"
|
||||
description = "Data Regression Testing Framework for SQL Server"
|
||||
readme = "README.md"
|
||||
requires-python = ">=3.9"
|
||||
license = {text = "MIT"}
|
||||
authors = [
|
||||
{name = "QA Engineering Team"}
|
||||
]
|
||||
keywords = ["data", "regression", "testing", "sql-server", "comparison"]
|
||||
classifiers = [
|
||||
"Development Status :: 4 - Beta",
|
||||
"Environment :: Console",
|
||||
"Intended Audience :: Developers",
|
||||
"Operating System :: Microsoft :: Windows",
|
||||
"Programming Language :: Python :: 3.9",
|
||||
"Programming Language :: Python :: 3.10",
|
||||
"Programming Language :: Python :: 3.11",
|
||||
"Programming Language :: Python :: 3.12",
|
||||
"Topic :: Database",
|
||||
"Topic :: Software Development :: Testing",
|
||||
]
|
||||
|
||||
dependencies = [
|
||||
"pandas>=2.0",
|
||||
"sqlalchemy>=2.0",
|
||||
"pyodbc>=4.0",
|
||||
"pyyaml>=6.0",
|
||||
"pydantic>=2.0",
|
||||
"click>=8.0",
|
||||
"rich>=13.0",
|
||||
"jinja2>=3.0",
|
||||
"weasyprint>=60.0",
|
||||
]
|
||||
|
||||
[project.optional-dependencies]
|
||||
dev = [
|
||||
"pytest>=7.0",
|
||||
"pytest-cov>=4.0",
|
||||
"black>=23.0",
|
||||
"ruff>=0.1.0",
|
||||
"mypy>=1.0",
|
||||
"pre-commit>=3.0",
|
||||
]
|
||||
|
||||
[project.scripts]
|
||||
drt = "drt.cli.main:cli"
|
||||
|
||||
[build-system]
|
||||
requires = ["setuptools>=61.0", "wheel"]
|
||||
build-backend = "setuptools.build_meta"
|
||||
|
||||
[tool.setuptools.packages.find]
|
||||
where = ["src"]
|
||||
|
||||
[tool.black]
|
||||
line-length = 100
|
||||
target-version = ["py39", "py310", "py311", "py312"]
|
||||
|
||||
[tool.ruff]
|
||||
line-length = 100
|
||||
select = ["E", "F", "W", "I", "N", "UP", "B", "C4"]
|
||||
|
||||
[tool.mypy]
|
||||
python_version = "3.9"
|
||||
warn_return_any = true
|
||||
warn_unused_configs = true
|
||||
ignore_missing_imports = true
|
||||
|
||||
[tool.pytest.ini_options]
|
||||
testpaths = ["tests"]
|
||||
addopts = "-v --cov=drt --cov-report=term-missing"
|
||||
Reference in New Issue
Block a user