diff --git a/libra/statsd/__init__.py b/libra/statsd/__init__.py new file mode 100644 index 00000000..582348cb --- /dev/null +++ b/libra/statsd/__init__.py @@ -0,0 +1,13 @@ +# Copyright 2012 Hewlett-Packard Development Company, L.P. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may +# not use this file except in compliance with the License. You may obtain +# a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +# License for the specific language governing permissions and limitations +# under the License. diff --git a/libra/statsd/main.py b/libra/statsd/main.py new file mode 100644 index 00000000..caf22ca0 --- /dev/null +++ b/libra/statsd/main.py @@ -0,0 +1,17 @@ +# Copyright 2012 Hewlett-Packard Development Company, L.P. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may +# not use this file except in compliance with the License. You may obtain +# a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +# License for the specific language governing permissions and limitations +# under the License. + + +def main(): + return 0 diff --git a/setup.py b/setup.py index ff20b48d..b1761184 100644 --- a/setup.py +++ b/setup.py @@ -77,6 +77,7 @@ setuptools.setup( 'libra_worker = libra.worker.main:main', 'libra_pool_mgm = libra.mgm.mgm:main', 'libra_client = libra.client.client:main', + 'libra_statsd = libra.statsd.main:main', ] }, cmdclass=ci_cmdclass,