forked from masroore/pg_simple
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
34 lines (30 loc) · 1.18 KB
/
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
31
32
33
34
import os
from setuptools import setup, find_packages
import pg_simple
try:
with open(os.path.abspath('./README.rst')) as stream:
long_description = stream.read()
except:
long_description = 'pg_simple is a simple wrapper for Python psycopg2 with connection pooling'
setup(
name=pg_simple.__name__,
version=pg_simple.VERSION,
packages=find_packages(),
install_requires=['psycopg2'],
classifiers=['Topic :: Database',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Intended Audience :: Developers',
'Development Status :: 3 - Alpha'],
author='Masroor Ehsan Choudhury',
author_email='[email protected]',
description='A simple wrapper for Python psycopg2 with connection pooling',
long_description=long_description,
license='BSD',
keywords='psycopg2 postgresql sql database',
url='https://github.com/masroore/pg_simple',
)