-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.cfg
46 lines (42 loc) · 1.05 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 = snapshot-queries
author = Cedar
author_email = "[email protected]"
version = attr: snapshot_queries.VERSION
description = A tool for capturing queries executed in Django and SQLAlchemy
long_description = file: README.md
long_description_content_type = text/markdown
keywords = queries, testing, snapshots, orm, sql
license_files = LICENSE.txt
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: MIT License
Operating System :: OS Independent
url = https://github.com/cedar-team/snapshot-queries
python_requires = >=3.6
[options]
packages =
snapshot_queries
snapshot_queries.testing
install_requires =
sqlparse>=0.4.1
attrs>=20.3.0
pygments>=2.8.1
[options.entry_points]
pytest11 =
snapshot-queries = snapshot_queries.testing.pytest_plugin
[options.extras_require]
development =
snapshottest==0.5.1
pytest==7.1.1
psycopg2-binary==2.8.6
ipdb
pre-commit
linting =
black==22.3.0
flake8==4.0.1
isort==5.10.1
snapshottest =
snapshottest
[flake8]
ignore = E501,W503