@@ -18,29 +18,6 @@ def find_packages(base):
1818 return ret
1919
2020
21- setup (
22- name = 'sqlparse' ,
23- version = '0.1.0' ,
24- packages = find_packages ('sqlparse' ),
25- description = 'Non-validating SQL parser' ,
26- author = 'Andi Albrecht' ,
27- 28- long_description = LONG_DESCRIPTION ,
29- license = 'BSD' ,
30- url = 'http://python-sqlparse.googlecode.com/' ,
31- classifiers = [
32- 'Development Status :: 3 - Alpha' ,
33- 'Intended Audience :: Developers' ,
34- 'License :: OSI Approved :: BSD License' ,
35- 'Operating System :: OS Independent' ,
36- 'Programming Language :: Python' ,
37- 'Topic :: Database' ,
38- 'Topic :: Software Development'
39- ],
40- scripts = ['bin/sqlformat' ],
41- )
42-
43-
4421LONG_DESCRIPTION = """
4522``sqlparse`` is a non-validating SQL parser module.
4623It provides support for parsing, splitting and formatting SQL statements.
@@ -91,3 +68,26 @@ def find_packages(base):
9168 <Where 'where ...' at 0x9b5caac>)
9269
9370"""
71+
72+
73+ setup (
74+ name = 'sqlparse' ,
75+ version = '0.1.0' ,
76+ packages = find_packages ('sqlparse' ),
77+ description = 'Non-validating SQL parser' ,
78+ author = 'Andi Albrecht' ,
79+ 80+ long_description = LONG_DESCRIPTION ,
81+ license = 'BSD' ,
82+ url = 'http://python-sqlparse.googlecode.com/' ,
83+ classifiers = [
84+ 'Development Status :: 3 - Alpha' ,
85+ 'Intended Audience :: Developers' ,
86+ 'License :: OSI Approved :: BSD License' ,
87+ 'Operating System :: OS Independent' ,
88+ 'Programming Language :: Python' ,
89+ 'Topic :: Database' ,
90+ 'Topic :: Software Development'
91+ ],
92+ scripts = ['bin/sqlformat' ],
93+ )
0 commit comments