summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorAndi Albrecht <albrecht.andi@gmail.com>2009-04-03 21:26:42 +0200
committerAndi Albrecht <albrecht.andi@gmail.com>2009-04-03 21:26:42 +0200
commit361122eb22d5681c58dac731009e4814b3dd5fa5 (patch)
treeb096496bc9c6b8febe092d0aefd56de1a4f8f4a0 /setup.py
downloadsqlparse-361122eb22d5681c58dac731009e4814b3dd5fa5.tar.gz
Initial import.
Diffstat (limited to 'setup.py')
-rwxr-xr-xsetup.py28
1 files changed, 28 insertions, 0 deletions
diff --git a/setup.py b/setup.py
new file mode 100755
index 0000000..6ed5178
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,28 @@
+# Copyright (C) 2008 Andi Albrecht, albrecht.andi@gmail.com
+#
+# This setup script is part of python-sqlparse and is released under
+# the BSD License: http://www.opensource.org/licenses/bsd-license.php.
+
+from distutils.core import setup
+
+setup(
+ name='sqlparse',
+ version='0.1.0',
+ py_modules=['sqlparse'],
+ description='Provides simple SQL parsing',
+ author='Andi Albrecht',
+ author_email='albrecht.andi@gmail.com',
+ #long_description=release.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'],
+)