Removed unused function

This commit is contained in:
2014-11-25 12:39:53 +01:00
parent da5a4392cf
commit c2b023ad95
2 changed files with 4 additions and 13 deletions

View File

@@ -4,13 +4,13 @@ from setuptools import find_packages
setup(
name='sqlquerybuilder',
version='0.0.2',
version=sqlquerybuilder.VERSION,
author='José Sánchez Moreno',
author_email='jose@o2w.es',
packages=find_packages(),
license='LICENSE.txt',
license='MIT',
description=u'SQL Query Builder inspired on django ORM Syntax',
long_description=open('README.txt').read(),
long_description=open('README.rst').read(),
url='https://github.com/josesanch/sqlquerybuilder',
platforms="All platforms",

View File

@@ -1,15 +1,6 @@
import datetime
def is_number(s):
try:
float(s) # for int, long and float
except ValueError:
try:
complex(s) # for complex
except ValueError:
return False
return True
VERSION = "0.0.3"
class classproperty(object):