Skip to content

Commit

Permalink
Fixed install issues.
Browse files Browse the repository at this point in the history
Forgot to add ire.actions to the list of installed packages.
  • Loading branch information
nemec committed Mar 7, 2012
1 parent 5c0d69a commit d9e0844
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@
*.conf
*~
bin/
build/
dist/
MANIFEST
1 change: 0 additions & 1 deletion ire-config-gtk.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,6 @@ def get_active_choice(self):
arg_name, display, description = arg
arg_content = child.get_text()
args[arg_name] = arg_content
print arg_name
return {"type": action_type, "args": args}


Expand Down
6 changes: 3 additions & 3 deletions ire/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
import actions
import eventhandler
import patterns
from . import actions
from . import eventhandler
from . import patterns
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@

config_bin = os.path.splitext(config_application)[0]

bin_dir = "build/bin/"
bin_dir = "build/bin"

try:
os.mkdir(bin_dir)
os.makedirs(bin_dir)
except OSError:
pass # Dir already exists
# remove .py from executables
Expand All @@ -43,7 +43,7 @@
author_email="djnemec@gmail.com",
url="https://github.com/nemec/Ire",
version="0.8",
packages=["ire"],
packages=["ire", "ire.actions"],
scripts=[os.path.join(bin_dir, x) for x in ["ire", config_bin]],
data_files=data_files
)

0 comments on commit d9e0844

Please sign in to comment.