Restore CLI entry point and version in setup.cfg

During project toxification (commit c96200f) setup.py was modified
according to OpenStack standards and the entry_point and version
info were removed from it.
However, appropriate sections were not added into setup.cfg.
This commit puts them there, so CLI and package versioning works
properly again.

Change-Id: I1e2ed6513b4e4cd8d3dcc774fd456833dc7c79d5
This commit is contained in:
Alexander Tivelkov 2015-02-19 13:37:18 +03:00
parent 5fd8782144
commit aedc4d90d9

View File

@ -1,5 +1,6 @@
[metadata]
name = yaql
version = 0.3.0
summary = YAQL - Yet Another Query Language
description-file =
README.rst
@ -43,4 +44,8 @@ input_file = yaql/locale/yaql.pot
[extract_messages]
keywords = _ gettext ngettext l_ lazy_gettext
mapping_file = babel.cfg
output_file = yaql/locale/yaql.pot
output_file = yaql/locale/yaql.pot
[entry_points]
console_scripts =
yaql = yaql.cli.run:main