forked from fkarb/sqlalchemy-monetdb
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathsetup.cfg
75 lines (64 loc) · 1.75 KB
/
setup.cfg
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
[metadata]
name = sqlalchemy_monetdb
version = 2.0.0
description = SQLAlchemy dialect for MonetDB
long_description = file: README.rst
author = Gijs Molenaar
author_email = [email protected]
url = https://github.com/MonetDB/sqlalchemy-monetdb
classifiers =
Topic :: Database
Topic :: Database :: Front-Ends
Topic :: Database :: Database Engines/Servers
Development Status :: 5 - Production/Stable
Environment :: Console
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 :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
keywords = MonetDB, SQLALchemy
license=MIT
[options]
packages = find:
install_requires =
pymonetdb >= 1.8.2
sqlalchemy >= 2.0.34
python_requires = >=3.8
zip_safe = no
test_suite = test.test_suite
tests_require =
pytest
coverage
mypy
flake8
[options.entry_points]
sqlalchemy.dialects =
monetdb = sqlalchemy_monetdb.dialect:MonetDialect
monetdb.pymonetdb = sqlalchemy_monetdb.dialect:MonetDialect
[options.extras_require]
test =
pytest>=7.4.0
pytest-cov>=4.1.0
coverage>=7.3.0
mypy>=1.5.1
flake8>=6.1.0
[flake8]
max-line-length = 120
# [options.package_data]
# sqlalchemy_monetdb = py.typed
[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
[sqla_testing]
requirement_cls=sqlalchemy_monetdb.requirements:Requirements
profile_file=test/profiles.txt
[db]
default=monetdb://monetdb:monetdb@localhost:50000/test
[bdist_wheel]
universal=1
[aliases]
test=pytest