summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorAndi Albrecht <albrecht.andi@gmail.com>2009-04-07 20:32:28 +0200
committerAndi Albrecht <albrecht.andi@gmail.com>2009-04-07 20:32:28 +0200
commitae0a4563b6e2cb93c68194d0bda9847b2fadae09 (patch)
tree355333d6be365d0d43583d204957a408dcff45d7 /setup.py
parent3e08efdd54bad29907e4dede357350c2f19c95d9 (diff)
downloadsqlparse-ae0a4563b6e2cb93c68194d0bda9847b2fadae09.tar.gz
Fixed setup.py
Diffstat (limited to 'setup.py')
-rwxr-xr-xsetup.py46
1 files changed, 23 insertions, 23 deletions
diff --git a/setup.py b/setup.py
index f85898f..ffb56ff 100755
--- a/setup.py
+++ b/setup.py
@@ -18,29 +18,6 @@ def find_packages(base):
return ret
-setup(
- name='sqlparse',
- version='0.1.0',
- packages=find_packages('sqlparse'),
- description='Non-validating SQL parser',
- author='Andi Albrecht',
- author_email='albrecht.andi@gmail.com',
- long_description=LONG_DESCRIPTION,
- license='BSD',
- url='http://python-sqlparse.googlecode.com/',
- classifiers = [
- 'Development Status :: 3 - Alpha',
- 'Intended Audience :: Developers',
- 'License :: OSI Approved :: BSD License',
- 'Operating System :: OS Independent',
- 'Programming Language :: Python',
- 'Topic :: Database',
- 'Topic :: Software Development'
- ],
- scripts=['bin/sqlformat'],
-)
-
-
LONG_DESCRIPTION = """
``sqlparse`` is a non-validating SQL parser module.
It provides support for parsing, splitting and formatting SQL statements.
@@ -91,3 +68,26 @@ Parsing::
<Where 'where ...' at 0x9b5caac>)
"""
+
+
+setup(
+ name='sqlparse',
+ version='0.1.0',
+ packages=find_packages('sqlparse'),
+ description='Non-validating SQL parser',
+ author='Andi Albrecht',
+ author_email='albrecht.andi@gmail.com',
+ long_description=LONG_DESCRIPTION,
+ license='BSD',
+ url='http://python-sqlparse.googlecode.com/',
+ classifiers = [
+ 'Development Status :: 3 - Alpha',
+ 'Intended Audience :: Developers',
+ 'License :: OSI Approved :: BSD License',
+ 'Operating System :: OS Independent',
+ 'Programming Language :: Python',
+ 'Topic :: Database',
+ 'Topic :: Software Development'
+ ],
+ scripts=['bin/sqlformat'],
+)