-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (30 loc) · 760 Bytes
/
setup.py
File metadata and controls
33 lines (30 loc) · 760 Bytes
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
33
from setuptools import setup
def readme():
with open('README.md') as f:
return f.read()
setup(
name='ecomp',
version='0.1.0',
description='etcd-compute virtualization explorer',
long_description=readme(),
url='https://github.com/cdent/etcd-compute',
author='Chris Dent',
license='Apache2',
packages=['ecomp'],
install_requires=[
'etcd3',
'requests',
'PyYAML',
"libvirt-python; sys_platform != 'darwin'",
'cachecontrol[filecache]',
'bottle',
'psutil',
],
entry_points = {
'console_scripts': [
'eschedule=ecomp.schedule:run',
'ecompute=ecomp.compute:run',
],
}
)