Update setup.py
[pithos-web-client] / snf-pithos-webclient / setup.py
index 1878c2b..44663fb 100644 (file)
@@ -1,6 +1,5 @@
 #!/usr/bin/env python
-
-# Copyright 2011-2012 GRNET S.A. All rights reserved.
+# Copyright 2011-2014 GRNET S.A. All rights reserved.
 #
 # Redistribution and use in source and binary forms, with or
 # without modification, are permitted provided that the following
@@ -53,7 +52,7 @@ from pithos_webclient.version import __version__
 VERSION = __version__
 README = open(os.path.join(HERE, 'README')).read()
 CHANGES = open(os.path.join(HERE, 'Changelog')).read()
-SHORT_DESCRIPTION = 'Package short description'
+SHORT_DESCRIPTION = 'Frontend web application for Pithos+'
 
 PACKAGES_ROOT = '.'
 PACKAGES = find_packages(PACKAGES_ROOT)
@@ -69,7 +68,7 @@ CLASSIFIERS = [
 
 # Package requirements
 INSTALL_REQUIRES = [
-    'Django>=1.2, <1.3',
+    'Django>=1.2, <1.5',
     'snf-branding',
     'snf-common>=0.9.0rc'
 ]
@@ -269,12 +268,14 @@ setup(
     name='snf-pithos-webclient',
     version=VERSION,
     license='BSD',
-    url='http://code.grnet.gr/projects/pithos-web-client',
+    url='http://www.synnefo.org/',
     description=SHORT_DESCRIPTION,
     long_description=README + '\n\n' + CHANGES,
     classifiers=CLASSIFIERS,
-    author='GRNET',
-    author_email='pithos@grnet.gr',
+    author='Synnefo development team',
+    author_email='synnefo-devel@googlegroups.com',
+    maintainer='Synnefo development team',
+    maintainer_email='synnefo-devel@googlegroups.com',
 
     packages=find_packages(),
     include_package_data=True,
@@ -288,7 +289,7 @@ setup(
     entry_points={
         'synnefo': [
             'web_apps = pithos_webclient.synnefo_settings:installed_apps',
-            'urls = pithos_webclient.synnefo_settings:urlpatterns',
+            'urls = pithos_webclient.urls:urlpatterns',
             'web_static = pithos_webclient.synnefo_settings:static_files',
             'web_context_processors = '
             'pithos_webclient.synnefo_settings:context_processors'