X-Git-Url: https://code.grnet.gr/git/snf-image-creator/blobdiff_plain/1deb6a25443d91e9dfc6a95e02fb8f9ac36b2661..3e131a2aa896c47dd88038a575b5346ccde8fc9a:/setup.py diff --git a/setup.py b/setup.py index bad6b74..3a6dd27 100755 --- a/setup.py +++ b/setup.py @@ -1,5 +1,6 @@ #!/usr/bin/env python - +# -*- coding: utf-8 -*- +# # Copyright 2012 GRNET S.A. All rights reserved. # # Redistribution and use in source and binary forms, with or @@ -43,16 +44,16 @@ setup( description='Command line tool for creating images', long_description=open('README').read(), url='https://code.grnet.gr/projects/snf-image-creator', - author = "GRNET development team", - author_email = "okeanos-dev@lists.grnet.gr", + author="Synnefo development team", + author_email="synnefo-devel@googlegroups.com", license='BSD', packages=find_packages(), include_package_data=True, install_requires=['sh', 'ansicolors', 'progress>=1.0.2'], entry_points={ 'console_scripts': [ - 'snf-image-creator = image_creator.main:main', - 'snf-mkimage = image_creator.dialog_main:main'] + 'snf-mkimage = image_creator.main:main', + 'snf-image-creator = image_creator.dialog_main:main'] } ) # vim: set sta sts=4 shiftwidth=4 sw=4 et ai :