Adding setup.cfg,requirements.txt and __init__.py

Change-Id: I7e9da52e78b035a4d442b718ec66947b3a308e39
This commit is contained in:
Anand Shanmugam 2015-06-11 00:30:16 -07:00
parent b6658366e8
commit fe28fac9e5
4 changed files with 20 additions and 4 deletions

@ -16,4 +16,4 @@ import pbr.version
__version__ = pbr.version.VersionInfo(
'cloudpulseclient').version_string()
'python-cloudpulseclient').version_string()

@ -1,6 +1,15 @@
# The order of packages is significant, because pip processes them in the order
# of appearance. Changing the order has an impact on the overall integration
# process, which may cause wedges in the gate later.
pbr>=0.6,!=0.7,<1.0
argparse
pbr>=0.11,<2.0
Babel>=1.3
oslo.config>=1.11.0 # Apache-2.0
oslo.i18n>=1.5.0 # Apache-2.0
oslo.utils>=1.4.0 # Apache-2.0
iso8601>=0.1.9
requests>=2.5.2
python-keystoneclient>=1.3.0
PyYAML>=3.1.0
stevedore>=1.3.0 # Apache-2.0
six>=1.9.0

@ -24,6 +24,10 @@ classifier =
packages =
cloudpulseclient
[entry_points]
console_scripts =
cloudpulse = cloudpulseclient.shell:main
[build_sphinx]
source-dir = doc/source
build-dir = doc/build
@ -45,3 +49,6 @@ input_file = cloudpulseclient/locale/python-cloudpulseclient.pot
keywords = _ gettext ngettext l_ lazy_gettext
mapping_file = babel.cfg
output_file = cloudpulseclient/locale/python-cloudpulseclient.pot
[wheel]
universal = 1

@ -1,6 +1,6 @@
[tox]
minversion = 1.6
envlist = py33,py34,py26,py27,pypy,pep8
envlist = py34,py27,pep8
skipsdist = True
[testenv]