-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
24 lines (22 loc) · 922 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
"""
Install the ActiveMQ module for CAMM
Requires stomp.py: run easy_install stomp.py
"""
from setuptools import setup
import shutil
import os
import sys
import site
setup(
name = "camm_amq",
version = "1.1",
description = "ActiveMQ consumer for CAMM",
author = "Oak Ridge National Laboratory",
package_dir = {'camm_amq': 'activemq'},
packages = ['camm_amq'],
entry_points = {'console_scripts':["kepler_client = camm_amq.kepler_utilities:run_kepler_client",
"kepler_results_ready = camm_amq.kepler_utilities:send_amq_results_ready",
"dakota_client = camm_amq.dakota_client:run",
"camm_status = camm_amq.camm_monitor:send_status_info_command",
"camm_monitor = camm_amq.camm_monitor:run",]},
)