-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
32 lines (29 loc) · 961 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
from setuptools import setup
with open('README.md') as f:
readme = f.read()
setup(name='python-ddp',
version='0.1.5',
description='An event driven ddp client',
long_description=readme,
license='MIT',
author='Harrison Harnisch',
author_email='hharnisc@gmail.com',
url='https://github.com/hharnisc/python-ddp',
keywords = ["meteor", "ddp", "events", "emitter", "node.js", "node", "eventemitter", "event_emitter", "ejson"],
classifiers = [
"Programming Language :: Python",
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2.7", #only one tested
"Topic :: Other/Nonlisted Topic"
],
py_modules=['DDPClient'],
install_requires=[
'pyee',
'ws4py',
'meteor-ejson'
],
)