Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(82)

Delta Between Two Patch Sets: setup.py

Issue 4248045: python-sql: select examples (Closed)
Left Patch Set: Add all aggregate functions Created 13 years, 7 months ago
Right Patch Set: Add setup.py and fix AliasManager for Python 2.7 Created 13 years, 3 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
Right: Side by side diff | Download
« no previous file with change/comment | « README ('k') | sql/__init__.py » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
(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 )
LEFTRIGHT

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b