mirror of
https://github.com/jazzband/django-ddp.git
synced 2026-03-17 06:50:24 +00:00
25 lines
717 B
Python
25 lines
717 B
Python
#!/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=open('VERSION.txt', 'r').readline(),
|
|
description=__doc__,
|
|
long_description=open('README.rst').read(),
|
|
author='Tyson Clugg',
|
|
author_email='tyson@clugg.net',
|
|
url='https://github.com/tysonclugg/django-ddp',
|
|
packages=find_packages(),
|
|
include_package_data=True,
|
|
install_requires=[
|
|
'Django>=1.7',
|
|
'psycopg2>=2.5.4',
|
|
],
|
|
classifiers=[
|
|
"Programming Language :: Python :: 2",
|
|
"Programming Language :: Python :: 3",
|
|
"Topic :: Internet :: WWW/HTTP",
|
|
],
|
|
)
|