Skip to content

Commit

Permalink
chore: Release v0.2.9
Browse files Browse the repository at this point in the history
  • Loading branch information
leonardomathon committed Mar 15, 2022
1 parent ddd075a commit ed1a509
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
5 changes: 3 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = sqleyes
version = 0.2.2
version = 0.2.9
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
Expand All @@ -26,6 +26,7 @@ classifiers =
packages =
sqleyes
sqleyes.definitions
sqleyes.definitions.antipatterns
sqleyes.detector
sqleyes.detector.antipatterns
sqleyes.printer
Expand All @@ -36,7 +37,7 @@ install_requires =
python_requires = >=3.6
package_dir =
=.
zip_safe = no
zip_safe = False
include_package_data = True

[options.entry_points]
Expand Down
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
from setuptools import setup

if __name__ == "__main__":
setup()
setup(
package_data={'': ['*.md']},
)
Empty file.

0 comments on commit ed1a509

Please sign in to comment.