-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
executable file
·77 lines (63 loc) · 1.83 KB
/
pyproject.toml
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
[build-system]
requires = ["poetry-core>=1.9.1"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "ddcDatabases"
version = "1.0.18"
description = "Databases Connection and Queries"
license = "MIT"
readme = "README.md"
authors = ["Daniel Costa <danieldcsta@gmail.com>"]
maintainers = ["Daniel Costa"]
repository = "https://github.com/ddc/ddcDatabases"
homepage = "https://pypi.org/project/ddcDatabases"
packages = [{include = "ddcDatabases"}]
package-mode = true
keywords = [
"python3", "python-3", "python",
"databases", "database",
"sqlite", "sqlite3", "sqlite3-database",
"mssql", "mssql-database",
"postgres", "postgresql", "postgresql-database",
"postgressql","ddcDatabases"
]
classifiers = [
"Topic :: Software Development :: Libraries :: Python Modules",
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Operating System :: OS Independent",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"Natural Language :: English",
]
[tool.poetry.group.test]
optional = true
[tool.poetry.dependencies]
python = "^3.10"
aioodbc = "^0.5.0"
asyncpg = "^0.30.0"
psycopg2-binary = "^2.9.10"
pydantic-settings = "^2.6.1"
pyodbc = "^5.2.0"
SQLAlchemy = "^2.0.36"
pytest = "^8.3.4"
[tool.poetry.extras]
mssql = [ "pyodbc", "aioodbc" ]
pgsql = [ "psycopg2-binary", "asyncpg" ]
all = [ "pyodbc", "aioodbc", "psycopg2-binary", "asyncpg" ]
[tool.poetry.group.test.dependencies]
coverage = "^7.6.9"
faker = "^33.1.0"
poethepoet = "^0.31.1"
pytest = "^8.3.4"
[tool.coverage.run]
omit = [
"tests/*",
]
[tool.poe.tasks]
_test = "coverage run -m pytest -v"
_coverage_report = "coverage report"
_coverage_xml = "coverage xml"
tests = ["_test", "_coverage_report", "_coverage_xml"]
test = ["tests"]