]> git.parisson.com Git - telemeta.git/commitdiff
fix deps order
authorGuillaume Pellerin <yomguy@parisson.com>
Thu, 13 Nov 2014 13:28:30 +0000 (14:28 +0100)
committerGuillaume Pellerin <yomguy@parisson.com>
Thu, 13 Nov 2014 13:28:30 +0000 (14:28 +0100)
setup.py

index ff336992dd00b1f663157c3652daf6c45f81cc7d..8c7fa0a08e73602fa840fec75b133695e9db2d27 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -20,7 +20,7 @@ CLASSIFIERS = ['Environment :: Web Environment',
 setup(
   name = "Telemeta",
   url = "http://telemeta.org",
-  description = "open web audio CMS",
+  description = "Open web audio application with semantics",
   long_description = open('README.rst').read(),
   author = "Guillaume Pellerin",
   author_email = "yomguy@parisson.com",
@@ -28,26 +28,24 @@ setup(
   install_requires = [
         'django==1.6.7',
         'django-registration',
-        'django-json-rpc',
-        'numpy',
-        'timeside',
-        'south',
-        'sorl-thumbnail',
         'django-extensions',
-        'docutils',
         'django-timezones',
         'django-jqchat',
-        'psutil',
-        'pyyaml',
-        'python-ebml',
         'django-debug-toolbar',
         'django-extra-views',
         'django-breadcrumbs',
         'django-bootstrap3',
         'django-bootstrap-pagination',
+        'timeside',
+        'south',
+        'sorl-thumbnail',
+        'docutils',
+        'psutil',
+        'pyyaml',
+        'python-ebml',
   ],
   dependency_links = ['https://github.com/yomguy/django-json-rpc/tarball/0.6.2',
-                      'https://github.com/elo80ka/django-dynamic-formset/tarball/master',
+                      'https://github.com/yomguy/django-dynamic-formset/tarball/master',
                       ],
   platforms=['OS Independent'],
   license='CeCILL v2',