Browse Source

binary added

Gamaliel Espinoza 7 years ago
parent
commit
9fc61fc1ee
2 changed files with 7 additions and 1 deletions
  1. 6 0
      bin/fourier-ondemand
  2. 1 1
      setup.py

+ 6 - 0
bin/fourier-ondemand

@@ -0,0 +1,6 @@
+#!/usr/bin/env python
+from __future__ import absolute_import
+from ondemand.service import loop
+
+if __name__ == '__main__':
+	loop.start()

+ 1 - 1
setup.py

@@ -12,7 +12,7 @@ setup(
   version = ondemand.__version__,
   description = 'Fourier ondemand service',
   long_description = 'You can use it for do maintenance stuff',
-  #scripts = [join(binpath, 'fourier')],
+  scripts = [join(binpath, 'fourier-ondemand')],
   install_requires=['pyaudio'],
   author = 'Gamaliel Espinoza M.',
   author_email = 'gamaliel.espinoza@gmail.com',