Adding setup.cfg,requirements.txt and __init__.py
Change-Id: I7e9da52e78b035a4d442b718ec66947b3a308e39
This commit is contained in:
parent
b6658366e8
commit
fe28fac9e5
@ -16,4 +16,4 @@ import pbr.version
|
|||||||
|
|
||||||
|
|
||||||
__version__ = pbr.version.VersionInfo(
|
__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
|
# 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
|
# of appearance. Changing the order has an impact on the overall integration
|
||||||
# process, which may cause wedges in the gate later.
|
# process, which may cause wedges in the gate later.
|
||||||
|
argparse
|
||||||
pbr>=0.6,!=0.7,<1.0
|
pbr>=0.11,<2.0
|
||||||
Babel>=1.3
|
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 =
|
packages =
|
||||||
cloudpulseclient
|
cloudpulseclient
|
||||||
|
|
||||||
|
[entry_points]
|
||||||
|
console_scripts =
|
||||||
|
cloudpulse = cloudpulseclient.shell:main
|
||||||
|
|
||||||
[build_sphinx]
|
[build_sphinx]
|
||||||
source-dir = doc/source
|
source-dir = doc/source
|
||||||
build-dir = doc/build
|
build-dir = doc/build
|
||||||
@ -45,3 +49,6 @@ input_file = cloudpulseclient/locale/python-cloudpulseclient.pot
|
|||||||
keywords = _ gettext ngettext l_ lazy_gettext
|
keywords = _ gettext ngettext l_ lazy_gettext
|
||||||
mapping_file = babel.cfg
|
mapping_file = babel.cfg
|
||||||
output_file = cloudpulseclient/locale/python-cloudpulseclient.pot
|
output_file = cloudpulseclient/locale/python-cloudpulseclient.pot
|
||||||
|
|
||||||
|
[wheel]
|
||||||
|
universal = 1
|
||||||
|
2
tox.ini
2
tox.ini
@ -1,6 +1,6 @@
|
|||||||
[tox]
|
[tox]
|
||||||
minversion = 1.6
|
minversion = 1.6
|
||||||
envlist = py33,py34,py26,py27,pypy,pep8
|
envlist = py34,py27,pep8
|
||||||
skipsdist = True
|
skipsdist = True
|
||||||
|
|
||||||
[testenv]
|
[testenv]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user