Update installer to work with saas branch
This commit is contained in:
parent
d48e594dcd
commit
4c797cf100
13 changed files with 168 additions and 144 deletions
1
python_apps/airtime-celery/MANIFEST.in
Normal file
1
python_apps/airtime-celery/MANIFEST.in
Normal file
|
@ -0,0 +1 @@
|
|||
include README.rst
|
|
@ -3,6 +3,11 @@ from subprocess import call
|
|||
import os
|
||||
import sys
|
||||
|
||||
# Change directory since setuptools uses relative paths
|
||||
script_path = os.path.dirname(os.path.realpath(__file__))
|
||||
print script_path
|
||||
os.chdir(script_path)
|
||||
|
||||
install_args = ['install', 'install_data', 'develop']
|
||||
run_postinst = False
|
||||
|
||||
|
|
|
@ -1,6 +1,12 @@
|
|||
from setuptools import setup
|
||||
from subprocess import call
|
||||
import sys
|
||||
import os
|
||||
|
||||
# Change directory since setuptools uses relative paths
|
||||
script_path = os.path.dirname(os.path.realpath(__file__))
|
||||
print script_path
|
||||
os.chdir(script_path)
|
||||
|
||||
# Allows us to avoid installing the upstart init script when deploying airtime_analyzer
|
||||
# on Airtime Pro:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue