forked from Othernet-Project/sqlize-pg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (25 loc) · 843 Bytes
/
setup.py
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
29
30
import os
from setuptools import setup, find_packages
import sqlize_pg as pkg
def read(fname):
""" Return content of specified file """
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='sqlize-pg',
version=pkg.__version__,
author='Outernet Inc',
author_email='[email protected]',
description='Lightweight SQL query builder',
license='GPLv3',
keywords='sql query builder',
url='https://github.com/Outernet-project/sqlize-pg',
packages=find_packages(),
long_description=read('README.rst'),
classifiers=[
'Development Status :: 4 - Beta',
'Topic :: Utilities',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
],
)