Skip to content

Commit

Permalink
[cleanup] Fix imports order and quotes
Browse files Browse the repository at this point in the history
Stupid change to test recent changes on mr.roboto
  • Loading branch information
gforcada committed Jul 19, 2017
1 parent de8d96f commit 5914ae7
Showing 1 changed file with 15 additions and 14 deletions.
29 changes: 15 additions & 14 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,32 +1,33 @@
"""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'

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='r.navarro@iskra.cat',
packages=find_packages('src'),
Expand Down

0 comments on commit 5914ae7

Please sign in to comment.