Initial commit for snf-image-creator-dialog
[snf-image-creator] / setup.py
index 345c8c3..05ddcec 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -1,6 +1,6 @@
 #!/usr/bin/env python
 
 #!/usr/bin/env python
 
-# Copyright 2011 GRNET S.A. All rights reserved.
+# Copyright 2012 GRNET S.A. All rights reserved.
 #
 # Redistribution and use in source and binary forms, with or
 # without modification, are permitted provided that the following
 #
 # Redistribution and use in source and binary forms, with or
 # without modification, are permitted provided that the following
@@ -45,10 +45,14 @@ setup(
 #    long_description=open('README.rst').read(),
     url='https://code.grnet.gr/projects/snf-image-creator',
     license='BSD',
 #    long_description=open('README.rst').read(),
     url='https://code.grnet.gr/projects/snf-image-creator',
     license='BSD',
-    packages=['image_creator'],
+    packages=['image_creator', 'image_creator.os_type',
+              'image_creator.output'],
     include_package_data=True,
     include_package_data=True,
-    install_requires=['losetup', 'pbs', 'clint'],
+    install_requires=['pbs', 'ansicolors', 'progress', 'pysendfile'],
     entry_points={
     entry_points={
-        'console_scripts': ['snf-image-creator = image_creator.main:main']
+        'console_scripts': [
+                'snf-image-creator = image_creator.main:main',
+                'snf-image-creator-dialog = image_creator.dialog_main:main']
     }
 )
     }
 )
+# vim: set sta sts=4 shiftwidth=4 sw=4 et ai :