forked from huit/nepho
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (28 loc) · 913 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
setup(
name = 'nepho',
version = '0.2.2',
url = 'http://github.com/huit/nepho',
description = 'Simplified cloud orchestration tool for constructing virtual data centers',
packages = ['nepho', 'nepho.core', 'nepho.cli', 'nepho.providers'],
author = 'Harvard University Information Technology',
author_email = 'ithelp@harvard.edu',
license = 'MIT',
scripts = ['bin/nepho'],
dependency_links = [
'git+git://github.com/cement/cement.git@2.1.4.dev20131029203905#egg=cement-2.1.4-dev'
],
install_requires = [
'argparse>=1.2',
'boto>=2.0',
'Jinja2',
'PyYAML',
'cement>=2.1,==2.1.4-dev',
'termcolor',
'gitpython==0.3.2.RC1',
'requests>=1.2.3',
'ply==3.4',
'python-vagrant==0.4.0'
],
)