mirror of
https://github.com/ceph/ceph
synced 2024-12-13 23:17:07 +00:00
e19d639f4b
This was in requirements.txt earlier, but using this library from elsewhere does not respect that, only setup.py.
23 lines
489 B
Python
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',
|
|
],
|
|
|
|
)
|