๐Ÿ“ฆ brijeshb42 / querybuilder

๐Ÿ“„ setup.py ยท 29 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29from setuptools import setup, find_packages

description = (
    'An SQL query building specification to be used'
    ' in conjunction with REST APIs and its implementation for peewee.')
long_desc = description
with open("README.rst") as f:
    long_desc = f.read()

setup(
    name='querybuilder',
    version='0.1.1',
    include_package_data=True,
    packages=find_packages(),
    description=description,
    long_description=long_desc,
    author='Brijesh Bittu',
    author_email='brijeshb42@gmail.com',
    url='https://github.com/brijeshb42/querybuilder',
    download_url='https://github.com/brijeshb42/querybuilder/tarball/0.1.1',
    keywords=['SQL', 'peewee', 'querybuilder'],
    license='http://www.opensource.org/licenses/mit-license.php',
    classifiers=[],
    test_suite='tests',
    extras_require={
        'peewee': ['peewee']
    }
)