LEFT | RIGHT |
(no file at all) | |
| 1 #!/usr/bin/env python |
| 2 #This file is part of python-sql. The COPYRIGHT file at the top level of |
| 3 #this repository contains the full copyright notices and license terms. |
| 4 from setuptools import setup, find_packages |
| 5 import os |
| 6 import sql |
| 7 |
| 8 |
| 9 def read(fname): |
| 10 return open(os.path.join(os.path.dirname(__file__), fname)).read() |
| 11 |
| 12 setup(name='python-sql', |
| 13 version=sql.__version__, |
| 14 description='Library to write SQL queries', |
| 15 long_description=read('README'), |
| 16 author='B2CK', |
| 17 author_email='info@b2ck.com', |
| 18 url='http://code.google.com/p/python-sql/', |
| 19 download_url='http://code.google.com/p/python-sql/downloads/', |
| 20 packages=find_packages(), |
| 21 classifiers=[ |
| 22 'Development Status :: 5 - Production/Stable', |
| 23 'Intended Audience :: Developers', |
| 24 'License :: OSI Approved :: GNU Library or Lesser General Public License
(LGPL)', |
| 25 'Operating System :: OS Independent', |
| 26 'Programming Language :: Python :: 2.6', |
| 27 'Programming Language :: Python :: 2.7', |
| 28 'Topic :: Database', |
| 29 'Topic :: Software Development :: Libraries :: Python Modules', |
| 30 ], |
| 31 license='LGPL-3', |
| 32 ) |
LEFT | RIGHT |