Complete UI/cli interface refactoring, minor bugs
[kamaki] / setup.py
index 15e89c8..b7a9ef5 100755 (executable)
--- a/setup.py
+++ b/setup.py
 # interpreted as representing official policies, either expressed
 # or implied, of GRNET S.A.
 
+from setuptools import setup
+from sys import version_info
+
 import kamaki
 
-from setuptools import setup
 
+optional = ['ansicolors', 'progress']
+required = ['snf-common>=0.10']
 
 setup(
     name='kamaki',
@@ -45,13 +49,10 @@ setup(
     long_description=open('README.rst').read(),
     url='http://code.grnet.gr/projects/kamaki',
     license='BSD',
-    packages=['kamaki', 'kamaki.clients'],
+    packages=['kamaki', 'kamaki.clients', 'kamaki.clients.connection', 'kamaki.cli', 'kamaki.cli.commands'],
     include_package_data=True,
     entry_points={
         'console_scripts': ['kamaki = kamaki.cli:main']
     },
-    install_requires=[
-        'requests>=0.10.6',
-        'clint>=0.3'
-    ]
+    install_requires=required
 )