agent/setup.py

25 lines
493 B
Python
Raw Normal View History

2016-04-20 03:39:25 +03:00
# coding: utf-8
from setuptools import setup
setup(
name='SWSCloudNode',
2016-10-09 22:59:21 +03:00
version='3.3.0',
2016-04-20 03:39:25 +03:00
author='Vyacheslav Anzhiganov',
author_email='vanzhiganov@ya.ru',
packages=[
'SWSCloudNode',
2016-10-09 22:59:21 +03:00
'SWSCloudNode.compute.lxc',
'SWSCloudNode.compute.qemu',
2016-04-20 03:39:25 +03:00
],
scripts=[
'cloud_node_agent.py',
'cloud_node_statistics.py',
],
install_requires=[
'requests',
2016-10-09 22:59:21 +03:00
'netaddr==0.7.18',
2016-10-12 02:39:20 +03:00
'libvirt-python>=1.3.1',
2016-04-20 03:39:25 +03:00
],
)