forked from FSX/momoko
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
32 lines (29 loc) · 859 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
32
#!/usr/bin/env python
try:
from setuptools import setup, Extension, Command
except ImportError:
from distutils.core import setup, Extension, Command
setup(
name='Momoko',
version='0.4.1',
description='An asynchronous Psycopg2 wrapper for Tornado.',
long_description=open('README.rst').read(),
author='Frank Smit',
author_email='[email protected]',
url='http://momoko.61924.nl/',
packages=['momoko'],
license='MIT',
install_requires=[
'tornado',
'psycopg2'
],
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.2',
'Topic :: Database',
'Topic :: Database :: Front-Ends'
]
)