-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpyproject.toml
125 lines (110 loc) · 3.01 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
[build-system]
requires = [
"poetry>=1.0.0",
]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "sqlalchemy_exasol"
version = "3.2.2"
description = "EXASOL dialect for SQLAlchemy"
readme = "README.rst"
authors = [
"Exasol AG <[email protected]>",
"Blue Yonder GmbH",
]
license = "BSD"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Operating System :: POSIX :: Linux",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Information Technology",
"Programming Language :: SQL",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Database",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Information Analysis",
]
keywords = [
"exasol",
"sql",
"sqlalchemy",
"data science",
"database",
]
repository = "https://github.com/exasol/sqlalchemy-exasol"
homepage = "https://www.exasol.com/"
documentation = "https://github.io/exasol/sqlalchemy-exaso/"
include = [
"README.rst",
"CHANGES.md",
"LICENSE",
]
exclude = []
[tool.poetry.dependencies]
python = ">=3.8,<4.0"
SQLAlchemy = ">=1.3.24,<1.4"
pyodbc = ">=4.0.34"
packaging = "^21.3"
turbodbc = {version = ">=4.5.4", optional = true}
[tool.poetry.dev-dependencies]
nox = ">=2022.1.7"
urlscan = ">=0.9.9"
pytest-json-report = ">=1.5.0"
# The excluded versions mirror the excluded versions of sqla 1.3.X.
# The limitation/issue pytest <6 is tracked in https://github.com/exasol/sqlalchemy-exasol/issues/144
pytest = ">=6,<7"
pytest-cov = ">=2.7.0"
pre-commit = "^2.19.0"
wheel = "^0.37.1"
black = "^22.6.0"
isort = "^5.10.1"
pylint = "^2.14.5"
mypy = "^0.971"
pyupgrade = "^2.37.3"
scriv = "^0.16.0"
Sphinx = "^5.1.1"
furo = "^2022.6.21"
sphinx-copybutton = "^0.5.0"
[tool.poetry.extras]
turbodbc = ["turbodbc"]
[tool.poetry.plugins."sqlalchemy.dialects"]
"exa.pyodbc" = "sqlalchemy_exasol.pyodbc:EXADialect_pyodbc"
"exa.turbodbc" = "sqlalchemy_exasol.turbodbc:EXADialect_turbodbc"
[tool.pytest.ini_options]
addopts= "--tb native -v -r fxX"
python_files= "test/*test_*.py"
filterwarnings = [
"error::DeprecationWarning",
"ignore::DeprecationWarning:sqlalchemy.testing.plugin.*",
]
[tool.black]
line-length = 88
verbose = false
include = "\\.pyi?$"
[tool.isort]
profile = "black"
force_grid_wrap = 2
[tool.pylint.master]
fail-under = 5.6
[tool.pylint.format]
max-line-length = 88
max-module-lines = 800
[tool.mypy]
files = [
'noxfile.py',
'scripts/**/*.py',
# Incrementaly add files and paths to fix until the entire project is checked
]
mypy_path = [
'typeshed'
]
[tool.scriv]
new_fragment_template = "file: templates/fragment-template.rst"
version = "literal: pyproject.toml: tool.poetry.version"