-
Notifications
You must be signed in to change notification settings - Fork 27
/
setup.py
30 lines (27 loc) · 939 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
#!/usr/bin/env python
from setuptools import setup
with open('README.md') as f:
readme = f.read()
setup(name='python-meteor',
version='0.1.6',
description='An event driven meteor client',
long_description=readme,
license='MIT',
author='Harrison Harnisch',
author_email='[email protected]',
url='https://github.com/hharnisc/python-meteor',
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=['MeteorClient'],
install_requires=[
'python-ddp'
],
)