Update setup.py
authorDionysis Grigoropoulos <dgrig@grnet.gr>
Mon, 31 Mar 2014 14:48:56 +0000 (17:48 +0300)
committerDionysis Grigoropoulos <dgrig@grnet.gr>
Mon, 31 Mar 2014 14:48:56 +0000 (17:48 +0300)
* Update Copyright date
* Update author/maintainer & author/maintainer email fields
* Update url to http://synnefo.org
* Update short description of package

snf-pithos-webclient/setup.py

index 4a56510..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)
@@ -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,