django-ddp/setup.py

39 lines
1 KiB
Python
Raw Permalink Normal View History

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',
version='0.12.1',
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-06-12 13:08:27 +00:00
'Django>=1.7',
2015-02-23 04:29:18 +00:00
'psycopg2>=2.5.4',
'gevent>=1.0',
2015-06-12 13:08:27 +00:00
'gevent-websocket>=0.9,!=0.9.4',
'meteor-ejson>=1.0',
'psycogreen>=1.0',
2015-04-08 06:14:22 +00:00
'django-dbarray>=0.2',
2015-06-10 07:49:04 +00:00
'pybars3>=0.9.1',
2015-02-23 04:29:18 +00:00
],
entry_points={
'console_scripts': [
'dddp=dddp.main:main',
],
},
2015-02-23 04:29:18 +00:00
classifiers=[
"License :: OSI Approved :: MIT License",
2015-02-23 04:29:18 +00:00
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries",
2015-02-23 04:29:18 +00:00
],
)