Remove version from setup_requires

setup_requires cannot effect an upgrade, but a version being listed can
block things from operating happily. Remove the version pin from
setup_requires. Also, the setup_hooks are no longer needed.

Change-Id: Idda7d67a21c9245ca8c17973e847629bd3b4e3f2
This commit is contained in:
Monty Taylor
2013-09-18 08:11:27 -05:00
parent f42bd361b3
commit 5e478ac7b2
3 changed files with 2 additions and 6 deletions

View File

@@ -62,7 +62,7 @@ e.g.
└── mysql.conf
```
An example tree [can be found here](http://git.openstack.org/cgit/openstack/tripleo-image-elements/tree/elements/keystone/os-config-applier)
An example tree [can be found here](http://git.openstack.org/cgit/openstack/tripleo-image-elements/tree/elements/keystone/os-apply-config)
If a template is executable it will be treated as an **executable template**.
Otherwise, it will be treated as a **mustache template**.

View File

@@ -20,10 +20,6 @@ classifier =
packages =
os_apply_config
[global]
setup-hooks =
pbr.hooks.setup_hook
[entry_points]
console_scripts =
os-config-applier = os_apply_config.apply_config:main

View File

@@ -18,5 +18,5 @@
import setuptools
setuptools.setup(
setup_requires=['pbr>=0.5.21,<1.0'],
setup_requires=['pbr'],
pbr=True)