NEW: __in lookup

This commit is contained in:
2014-11-26 10:19:07 +01:00
parent b52bbfc232
commit b45112c8bf
3 changed files with 27 additions and 6 deletions

View File

@@ -1,6 +1,7 @@
# encoding: utf-8
from distutils.core import setup
from setuptools import find_packages
import sqlquerybuilder
setup(
name='sqlquerybuilder',
@@ -8,6 +9,7 @@ setup(
author='José Sánchez Moreno',
author_email='jose@o2w.es',
packages=find_packages(),
test_suite="tests",
license='MIT',
description=u'SQL Query Builder inspired on django ORM Syntax',
long_description=open('README.rst').read(),
@@ -22,6 +24,7 @@ setup(
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python',
'Programming Language :: SQL',
],
)