-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
61 lines (56 loc) · 1.43 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
[metadata]
name = sqleyes
version = 0.5.0
description = A CLI in Python that analyzes raw SQL queries for common anti-patterns
long_description_content_type = text/markdown
long_description = file: README.md
keywords = SQL, anti-patterns, analysis
author = Leonardo Mathon
author_email = info@leonardomathon.nl
home_page = https://leonardomathon.nl
license = MIT
license_file = LICENSE
requires_dist = setuptools
platforms = unix, linux, osx, cygwin, win32
classifiers =
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
License :: OSI Approved :: MIT License
Operating System :: OS Independent
[options]
packages =
sqleyes
sqleyes.definitions
sqleyes.definitions.antipatterns
sqleyes.detector
sqleyes.detector.antipatterns
sqleyes.printer
sqleyes.utils
install_requires =
sqlparse>=0.4.2
sql-metadata>=2.4.0
rich>=12.0.0
python_requires = >=3.6
package_dir =
=.
zip_safe = False
include_package_data = True
[options.entry_points]
console_scripts =
sqleyes = sqleyes.cli:cli
[options.extras_require]
testing =
pytest>=7.0
pytest-cov>=3.0
mypy>=0.910
types-setuptools>=57.4.10
flake8>=4.0
tox>=3.24
[options.package_data]
sqleyes = py.typed
[flake8]
max-line-length = 160