plone.app.multilingual/master: [cleanup] Fix imports order and quotes
GitHub <jenkins-z4DKO/[email protected]>
| Newsgroups | gmane.comp.web.zope.plone.cvs |
|---|---|
| Message-ID | <[email protected]> |
Repository: plone.app.multilingual Branch: refs/heads/master Date: 2017-07-20T00:12:29+02:00 Author: Gil Forcada Codinachs (gforcada) <[email protected]> Commit: https://github.com/plone/plone.app.multilingual/commit/5914ae75a156b69d5e1297037aa5923961616154 [cleanup] Fix imports order and quotes Stupid change to test recent changes on mr.roboto Files changed: M setup.py diff --git a/setup.py b/setup.py index 798a64cd..79a9a7dd 100755 --- a/setup.py +++ b/setup.py @@ -1,7 +1,8 @@ """Setup plone.app.multilingual.""" +from setuptools import find_packages +from setuptools import setup import os -from setuptools import setup, find_packages version = '5.1.1.dev0' @@ -9,24 +10,24 @@ setup( name='plone.app.multilingual', version=version, - description="Multilingual Plone UI package, enables maintenance of " - "translations for both Dexterity types and Archetypes", - long_description="\n\n".join([ - open("README.rst").read(), - open(os.path.join("docs", "CREDITS.txt")).read(), - open("CHANGES.rst").read(), + description='Multilingual Plone UI package, enables maintenance of ' + 'translations for both Dexterity types and Archetypes', + long_description='\n\n'.join([ + open('README.rst').read(), + open(os.path.join('docs', 'CREDITS.txt')).read(), + open('CHANGES.rst').read(), ]), classifiers=[ - "Framework :: Plone", - "Framework :: Plone :: 5.0", - "Framework :: Plone :: 5.1", - "Programming Language :: Python", - "Programming Language :: Python :: 2.7", - "Topic :: Software Development :: Libraries :: Python Modules", + 'Framework :: Plone', + 'Framework :: Plone :: 5.0', + 'Framework :: Plone :: 5.1', + 'Programming Language :: Python', + 'Programming Language :: Python :: 2.7', + 'Topic :: Software Development :: Libraries :: Python Modules', ], url='https://github.com/plone/plone.app.multilingual', license='GPL', - keywords="language multilingual content", + keywords='language multilingual content', author='Ramon Navarro, Victor Fernandez de Alba, awello et al', author_email='[email protected]', packages=find_packages('src'), ------------------------------------------------------------------------------ Check out the vibrant tech community on one of the world's most engaging tech sites, Slashdot.org! http://sdm.link/slashdot