-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
31 lines (29 loc) · 875 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
31
""""""
from setuptools import setup
from os import path
with open(path.join(path.abspath(path.dirname(__file__)), 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name="pgwebsocket",
version="0.0.1b2",
description="Async websocket to PostgreSQL proxy",
long_description=long_description,
author="Wirehive Ltd",
author_email="[email protected]",
url="https://github.com/wirehive/pgwebsocket",
license='GPLv2',
keywords="aiohttp psycopg2 postgresql websocket",
packages=[
"pgwebsocket"
],
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Programming Language :: Python :: 3.5"
],
install_requires=[
"aiohttp",
"psycopg2"
]
)