-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
93 lines (85 loc) · 2 KB
/
pyproject.toml
File metadata and controls
93 lines (85 loc) · 2 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "dbduck"
version = "0.3.0"
description = "Universal Data Object Model - one API for every database"
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [
{ name = "Veeresh Hanni" }
]
keywords = ["database", "udom", "orm", "mongodb", "neo4j", "qdrant", "sqlalchemy"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Database",
"Topic :: Database :: Database Engines/Servers",
"Topic :: Software Development :: Libraries :: Python Modules"
]
dependencies = [
"sqlalchemy>=2.0",
"bcrypt>=4.0",
"colorama>=0.4.6"
]
[project.urls]
Homepage = "https://dbduck.org.in"
Repository = "https://github.com/Veeresh-Hanni/DBDuck"
Issues = "https://github.com/Veeresh-Hanni/DBDuck/issues"
Documentation = "https://dbduck.org.in"
[project.scripts]
dbduck = "DBDuck.cli.main:app"
[project.optional-dependencies]
mongo = ["pymongo>=4.0", "motor>=3.0"]
async = ["asyncpg>=0.29", "aiomysql>=0.2", "aiosqlite>=0.19", "motor>=3.0"]
vector = ["qdrant-client>=1.7"]
graph = ["neo4j>=5.0"]
mssql = ["pyodbc>=4.0"]
dev = [
"pytest",
"pytest-asyncio",
"pytest-cov",
"bandit",
"pip-audit",
"black",
"ruff"
]
all = [
"pymongo>=4.0",
"motor>=3.0",
"asyncpg>=0.29",
"aiomysql>=0.2",
"aiosqlite>=0.19",
"qdrant-client>=1.7",
"neo4j>=5.0",
"pyodbc>=4.0",
"pytest",
"pytest-asyncio",
"pytest-cov",
"bandit",
"pip-audit",
"black",
"ruff"
]
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
include = ["DBDuck*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]
[tool.bandit]
exclude_dirs = [
"tests",
".venv",
"wslvenv"
]
skips = ["B101"]