-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (66 loc) · 1.74 KB
/
Copy pathpyproject.toml
File metadata and controls
71 lines (66 loc) · 1.74 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
[project]
name = "dbression"
version = "0.3.1"
description = "Rage-quit your flaky DB regressions — modern, lightweight, multi-DB regression testing."
readme = "README.md"
license = { text = "MIT" }
authors = [
{ name = "Jürgen Zornig", email = "info@angrydata.info" }
]
requires-python = ">=3.12"
keywords = [
"database",
"testing",
"regression",
"dbfit",
"postgres",
"oracle",
"sqlserver",
"sqlite",
"sql",
"markdown",
"fitnesse",
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: SQL",
"Topic :: Database",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Software Development :: Testing",
"Typing :: Typed",
]
dependencies = [
"typer>=0.12",
"rich>=13.7",
"oracledb>=4.0.1",
"psycopg[binary]>=3.3.4",
"sqlalchemy>=2.0",
"pymssql>=2.3.13",
"markdown-it-py>=4.2.0",
]
[project.urls]
Homepage = "https://angrydata.info/dbression"
Repository = "https://github.com/angrydat/dbression"
Issues = "https://github.com/angrydat/dbression/issues"
Changelog = "https://github.com/angrydat/dbression/blob/main/CHANGELOG.md"
[project.scripts]
dbression = "dbression.cli:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"pytest>=8.0",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-ra"