summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--setup.py66
1 files changed, 33 insertions, 33 deletions
diff --git a/setup.py b/setup.py
index b4181132..0dd0dbdc 100644
--- a/setup.py
+++ b/setup.py
@@ -32,36 +32,36 @@ if platform.system() != 'Windows' and not platform.system().startswith("CYGWIN")
install_requirements.append('setproctitle >= 1.1.9')
setup(
- name='pgcli',
- author='Pgcli Core Team',
- author_email='i.chernyavska+pgcli@gmail.com',
- version=version,
- license='LICENSE.txt',
- url='http://pgcli.com',
- packages=find_packages(),
- package_data={'pgcli': ['pgclirc',
- 'packages/pgliterals/pgliterals.json']},
- description=description,
- long_description=open('README.rst').read(),
- install_requires=install_requirements,
- entry_points='''
- [console_scripts]
- pgcli=pgcli.main:cli
- ''',
- classifiers=[
- 'Intended Audience :: Developers',
- 'License :: OSI Approved :: BSD License',
- 'Operating System :: Unix',
- 'Programming Language :: Python',
- 'Programming Language :: Python :: 2.6',
- 'Programming Language :: Python :: 2.7',
- 'Programming Language :: Python :: 3',
- 'Programming Language :: Python :: 3.3',
- 'Programming Language :: Python :: 3.4',
- 'Programming Language :: SQL',
- 'Topic :: Database',
- 'Topic :: Database :: Front-Ends',
- 'Topic :: Software Development',
- 'Topic :: Software Development :: Libraries :: Python Modules',
- ],
- )
+ name='pgcli',
+ author='Pgcli Core Team',
+ author_email='i.chernyavska+pgcli@gmail.com',
+ version=version,
+ license='LICENSE.txt',
+ url='http://pgcli.com',
+ packages=find_packages(),
+ package_data={'pgcli': ['pgclirc',
+ 'packages/pgliterals/pgliterals.json']},
+ description=description,
+ long_description=open('README.rst').read(),
+ install_requires=install_requirements,
+ entry_points='''
+ [console_scripts]
+ pgcli=pgcli.main:cli
+ ''',
+ classifiers=[
+ 'Intended Audience :: Developers',
+ 'License :: OSI Approved :: BSD License',
+ 'Operating System :: Unix',
+ 'Programming Language :: Python',
+ 'Programming Language :: Python :: 2.6',
+ 'Programming Language :: Python :: 2.7',
+ 'Programming Language :: Python :: 3',
+ 'Programming Language :: Python :: 3.3',
+ 'Programming Language :: Python :: 3.4',
+ 'Programming Language :: SQL',
+ 'Topic :: Database',
+ 'Topic :: Database :: Front-Ends',
+ 'Topic :: Software Development',
+ 'Topic :: Software Development :: Libraries :: Python Modules',
+ ],
+)