2015-02-23 04:29:18 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
"""Django/PostgreSQL implementation of the Meteor DDP service."""
|
|
|
|
|
import os.path
|
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
|
|
|
|
|
setup(
|
|
|
|
|
name='django-ddp',
|
2015-04-14 01:15:50 +00:00
|
|
|
version='0.2.2',
|
2015-02-23 04:29:18 +00:00
|
|
|
description=__doc__,
|
|
|
|
|
long_description=open('README.rst').read(),
|
|
|
|
|
author='Tyson Clugg',
|
|
|
|
|
author_email='tyson@clugg.net',
|
2015-03-11 02:36:48 +00:00
|
|
|
url='https://github.com/commoncode/django-ddp',
|
2015-02-23 04:29:18 +00:00
|
|
|
packages=find_packages(),
|
|
|
|
|
include_package_data=True,
|
|
|
|
|
install_requires=[
|
2015-04-14 01:15:50 +00:00
|
|
|
'Django>=1.7,<1.8',
|
2015-02-23 04:29:18 +00:00
|
|
|
'psycopg2>=2.5.4',
|
2015-03-11 03:15:20 +00:00
|
|
|
'gevent>=1.0',
|
|
|
|
|
'gevent-websocket>=0.9',
|
|
|
|
|
'meteor-ejson>=1.0',
|
|
|
|
|
'psycogreen>=1.0',
|
2015-04-08 06:14:22 +00:00
|
|
|
'django-dbarray>=0.2',
|
2015-02-23 04:29:18 +00:00
|
|
|
],
|
|
|
|
|
classifiers=[
|
|
|
|
|
"Programming Language :: Python :: 2",
|
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
|
"Topic :: Internet :: WWW/HTTP",
|
|
|
|
|
],
|
|
|
|
|
)
|