-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (33 loc) · 1.27 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
35
36
#!/usr/bin/env python
import sys
import os
from distutils.core import setup
setup(name="rdbhdb",
version='0.11.0',
description="DB API module for accessing hosted databases at www.rdbhost.com",
author='David Keeney, Kris Sundaram',
author_email='[email protected], [email protected]',
maintainer='David Keeney',
maintainer_email='[email protected]',
url='http://www.rdbhost.com/',
package_dir={'rdbhdb': 'lib/rdbhdb'},
install_requires=['urllib3 >= 1.5'],
extras_require={'asyncio': ['asyncio', 'aiohttp']},
packages=['rdbhdb'],
long_description="""
Rdbhost hosts PostgreSQL databases, queried through HTTP
(it is a web service). This module provides a DB API 2 API
to access rdbhost.com hosted databases from your application.
Uses gzip compression to conserve bandwidth and time. Can
be used on Google Appengine or any other Python platform.
Starting with version 0.9.6, supports Asyncio.
""",
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
],
license='MIT'
)