Adding child node/objects parsing into introspection
[contrib/cloudeebus.git] / setup.py
1 #!/usr/bin/env python
2
3 # Cloudeebus
4 #
5 # Copyright (C) 2012 Intel Corporation. All rights reserved.
6 #
7 # Licensed under the Apache License, Version 2.0 (the "License");
8 # you may not use this file except in compliance with the License.
9 # You may obtain a copy of the License at
10 #
11 #     http://www.apache.org/licenses/LICENSE-2.0
12 #
13 # Unless required by applicable law or agreed to in writing, software
14 # distributed under the License is distributed on an "AS IS" BASIS,
15 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 # See the License for the specific language governing permissions and
17 # limitations under the License.
18 #
19 # Luc Yriarte <luc.yriarte@intel.com>
20 # Christophe Guiraud <christophe.guiraud@intel.com>
21 # Frederic Paut <frederic.paut@intel.com>
22 #
23
24 from setuptools import setup
25
26 setup(name = "cloudeebus",
27         version = "0.5.99",
28         description = "Javascript-DBus bridge",
29         author = "Luc Yriarte, Christophe Guiraud, Frederic Paut",
30         author_email = "luc.yriarte@intel.com, christophe.guiraud@intel.com, frederic.paut@intel.com",
31         url = "https://github.com/01org/cloudeebus/wiki",
32         license = "http://www.apache.org/licenses/LICENSE-2.0",
33         scripts = ["cloudeebus/cloudeebus.py"],
34         packages = ["cloudeebus"],
35         data_files = [("cloudeebus" ,["AUTHORS", "README.md", "LICENSE"]),
36                                  ('/etc/dbus-1/system.d/', ['org.cloudeebus.conf'])],
37         platforms = ("Any"),
38         install_requires = ["setuptools", "autobahn>=0.5.8"],
39         classifiers = ["License :: OSI Approved :: Apache Software License",
40                   "Development Status :: 3 - Alpha",
41                   "Environment :: Console",
42                   "Intended Audience :: Developers",
43                   "Operating System :: OS Independent",
44                   "Programming Language :: Python",
45                   "Topic :: Internet",
46                   "Topic :: Software Development :: Libraries"],
47         keywords = "cloudeebus autobahn websocket dbus javascript bridge")