-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.cfg
46 lines (41 loc) · 1.32 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
[metadata]
name = sqlalchemy-iris
version = 0.15.4
description = InterSystems IRIS for SQLAlchemy
long_description = file: README.md
url = https://github.com/caretdev/sqlalchemy-iris
maintainer = CaretDev
maintainer_email = [email protected]
license = MIT
long_description_content_type = text/markdown
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Topic :: Database :: Front-Ends
Operating System :: OS Independent
keywords="SQLAlchemy InterSystems IRIS",
project_urls =
Source = https://github.com/caretdev/sqlalchemy-iris
Tracker = https://github.com/caretdev/sqlalchemy-iris/issues
[options]
python_requires = >=3.8
packages = find:
[tool:pytest]
addopts= --tb native -v -r fxX --maxfail=25 -p no:warnings
[db]
default=iris://_SYSTEM:SYS@localhost:1972/USER
iris=iris://_SYSTEM:SYS@localhost:1972/USER
irisasync=iris+irisasync://_SYSTEM:SYS@localhost:1972/USER
irisemb=iris+emb:///
sqlite=sqlite:///:memory:
[sqla_testing]
requirement_cls=sqlalchemy_iris.requirements:Requirements
profile_file=test/profiles.txt
[flake8]
max-line-length=120