Files
sqlquerybuilder/setup.py

31 lines
933 B
Python
Raw Permalink Normal View History

# encoding: utf-8
from distutils.core import setup
from setuptools import find_packages
2014-11-26 10:19:07 +01:00
import sqlquerybuilder
setup(
name='sqlquerybuilder',
2014-11-25 12:39:53 +01:00
version=sqlquerybuilder.VERSION,
author='José Sánchez Moreno',
author_email='jose@o2w.es',
packages=find_packages(),
2014-11-26 10:19:07 +01:00
test_suite="tests",
2014-11-25 12:39:53 +01:00
license='MIT',
description=u'SQL Query Builder inspired on django ORM Syntax',
2014-11-25 12:39:53 +01:00
long_description=open('README.rst').read(),
url='https://github.com/josesanch/sqlquerybuilder',
2014-11-25 12:29:25 +01:00
platforms="All platforms",
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: Python Software Foundation License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python',
2014-11-26 10:19:07 +01:00
'Programming Language :: SQL',
],
2014-11-25 12:29:25 +01:00
)