-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (26 loc) · 908 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
#!/usr/bin/env python
import os
import sys
from glob import glob
sys.path.insert(0, os.path.abspath('lib'))
from aeco import __version__, __author__
try:
from setuptools import setup, find_packages
except ImportError:
print("aeco now needs setuptools in order to build. Install it using"
" your package manager (usually python-setuptools) or via pip (pip"
" install setuptools).")
sys.exit(1)
setup(name='aeco',
version=__version__,
description='apphome ecosystem tools',
author=__author__,
license='MIT',
install_requires=['jenkinsapi', 'docopt', "python-dateutil", 'simplejson', 'tabulate', "rethinkdb", "paramiko==1.12.2" ],
dependency_links = ['git+https://github.com/yetu/py-smartdc.git'],
package_dir={'': 'lib'},
packages=find_packages('lib'),
package_data={},
scripts=['bin/aeco'],
data_files=[],
)