forked from brent-hoover/tornpsql
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (20 loc) · 803 Bytes
/
setup.py
File metadata and controls
21 lines (20 loc) · 803 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup
setup(name='tornpsql',
version='2.1.5',
description="PostgreSQL handler for Tornado Web",
long_description="",
classifiers=["Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 2.7",
"Programming Language :: SQL",
"Topic :: Database"],
keywords='tornado psql postgres postgresql sql',
author='Steve Peak',
author_email='steve@stevepeak.net',
url='https://github.com/stevepeak/tornpsql',
license='Apache v2.0',
packages=['tornpsql'],
include_package_data=True,
zip_safe=True,
install_requires=["psycopg2>=2.5.2"],
entry_points="")