ceph/setup.py
Tommi Virtanen e19d639f4b Gevent 0.14 switches to libev, avoid it for now.
This was in requirements.txt earlier, but using this library
from elsewhere does not respect that, only setup.py.
2011-06-08 13:20:44 -07:00

23 lines
489 B
Python

#!/usr/bin/python
from setuptools import setup, find_packages, Extension
setup(
name='orchestra',
version='0.0.1',
packages=find_packages(),
author='Tommi Virtanen',
author_email='tommi.virtanen@dreamhost.com',
description='Orchestration of multiple machines over SSH',
license='MIT',
keywords='ssh cluster',
install_requires=[
'gevent ==0.13.6',
'paramiko >=1.7.7',
'nose >=1.0.0',
'fudge >=1.0.3',
],
)