forked from fkarb/sqlalchemy-monetdb
-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpyproject.toml
More file actions
82 lines (70 loc) · 2.46 KB
/
pyproject.toml
File metadata and controls
82 lines (70 loc) · 2.46 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
[build-system]
requires = ["hatchling >= 1.16"]
build-backend = "hatchling.build"
[project]
dynamic = [ "version" ]
name = "sqlalchemy_monetdb"
description = "SQLAlchemy dialect for MonetDB"
readme = "README.rst"
authors = [
{ name = "Gijs Molenaar", email = "gijsmolenaar@gmail.com" }
]
license = "MIT"
keywords = ["MonetDB", "SQLAlchemy"]
classifiers = [
"Topic :: Database",
"Topic :: Database :: Front-Ends",
"Topic :: Database :: Database Engines/Servers",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: Implementation :: CPython",
# we never test this: "Programming Language :: Python :: Implementation :: PyPy",
]
requires-python = ">=3.8.1"
dependencies = [
"pymonetdb>=1.8.2",
"sqlalchemy>=2.0.34",
]
[project.urls]
Homepage = "https://github.com/MonetDB/sqlalchemy-monetdb"
Repository = "https://github.com/MonetDB/sqlalchemy-monetdb"
Issues = "https://github.com/MonetDB/sqlalchemy-monetdb/issues"
Changelog = "https://github.com/me/spam/blob/master/CHANGES"
[project.optional-dependencies]
# The 'test' dependencies are development dependencies, not end user dependencies.
# They should really be a dependency group but that has only
# recently been added to pip so we leave them as optional dependencies.
# Dependency group 'dev' below automatically includes them.
test = [
"pytest>=7.4.0",
"pytest-cov>=4.1.0",
"coverage>=7.3.0",
"mypy>=1.5.1",
"flake8>=6.1.0",
]
[project.entry-points."sqlalchemy.dialects"]
monetdb = "sqlalchemy_monetdb.dialect:MonetDialect"
"monetdb.pymonetdb" = "sqlalchemy_monetdb.dialect:MonetDialect"
[dependency-groups]
# 'dev' refers to the optional dependencies listed above.
dev = [ "sqlalchemy_monetdb[test] >=2.0.0" ]
[tool.hatch.build.targets.sdist]
#include =
exclude = [ ".jj" ]
[tool.hatch.version]
path = "sqlalchemy_monetdb/__init__.py"
[tool.pytest]
addopts = ["--tb", "auto", "-r", "fxX", "-p", "no:warnings"]
# addopts = "--tb native -v -r fxX --maxfail=25 -p no:warnings"
python_files = ["test/*test_*.py"]
[tool.flake8]
max-line-length = 120
# [options.package_data]
# sqlalchemy_monetdb = py.typed