summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichal Minar <miminar@redhat.com>2014-04-24 16:29:11 +0200
committerMichal Minar <miminar@redhat.com>2014-04-28 12:18:10 +0200
commit6b7a9c247694456a4a34d457850c398c1f9d645e (patch)
treeff34014851527aa4530ed26ee194177bc8c8f324
parent9fc910c95b6ab8350d797eb1740e9dc9cb37827f (diff)
downloadopenlmi-scripts-6b7a9c247694456a4a34d457850c398c1f9d645e.tar.gz
openlmi-scripts-6b7a9c247694456a4a34d457850c398c1f9d645e.tar.xz
openlmi-scripts-6b7a9c247694456a4a34d457850c398c1f9d645e.zip
fixed requires in README and script generator
-rw-r--r--commands/README.md2
-rwxr-xr-xcommands/make_new.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/commands/README.md b/commands/README.md
index 7221422..0139363 100644
--- a/commands/README.md
+++ b/commands/README.md
@@ -70,7 +70,7 @@ this:
setup(
name="<PROJECT>",
version="@@VERSION@@",
- install_requires=['openlmi-scripts'],
+ install_requires=['openlmi-tools'],
namespace_packages=['lmi', 'lmi.scripts'],
packages=['lmi', 'lmi.scripts', 'lmi.scripts.<provider_prefix>'],
entry_points={
diff --git a/commands/make_new.py b/commands/make_new.py
index b5585d6..37178bb 100755
--- a/commands/make_new.py
+++ b/commands/make_new.py
@@ -59,7 +59,7 @@ setup(
'Environment :: Console',
],
- install_requires=['openlmi-scripts'],
+ install_requires=['openlmi-tools >= 0.9.1'],
namespace_packages=['lmi', 'lmi.scripts'],
packages=['lmi', 'lmi.scripts', 'lmi.scripts.{name}'],