-
Notifications
You must be signed in to change notification settings - Fork 84
/
Copy pathpyproject.toml
64 lines (60 loc) · 1.51 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
[build-system]
requires = [
"pyarrow>=14,<20",
"pybind11",
"numpy",
"meson>=1.0.0",
"meson-python>=0.14.0",
]
build-backend = "mesonpy"
[project]
name = "turbodbc"
version = "5.1.2"
description = "turbodbc is a Python DB API 2.0 compatible ODBC driver"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Programming Language :: C++",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Database",
"Topic :: Software Development :: Libraries",
]
[tool.black]
exclude = '''
/(
\.eggs
| \.git
| \.venv
| build
| dist
)/
'''
target-version = ['py39']
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
line_length = 88
known_first_party = "turbodbc"
skip_glob = '\.eggs/*,\.git/*,\.venv/*,build/*,dist/*'
default_section = 'THIRDPARTY'
use_parentheses = true
force_grid_wrap = 0
ensure_newline_before_comments = true
[tool.mypy]
no_implicit_optional = true
check_untyped_defs = true
strict_equality = true
show_error_codes = true
pretty = true
namespace_packages = true
explicit_package_bases = true