Update authors list. Crosswalk port is a major contribution.
[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 # Patrick Ohly <patrick.ohly@intel.com>
23 #
24
25 from setuptools import setup
26
27 setup(name = "cloudeebus",
28         version = "0.6.0",
29         description = "Javascript-DBus bridge",
30         author = "Luc Yriarte, Christophe Guiraud, Frederic Paut, Patrick Ohly",
31         author_email = "luc.yriarte@intel.com, christophe.guiraud@intel.com, frederic.paut@intel.com, patrick.ohly@intel.com",
32         url = "https://github.com/01org/cloudeebus/wiki",
33         license = "http://www.apache.org/licenses/LICENSE-2.0",
34         scripts = ["cloudeebus/cloudeebus.py","cloudeebus/cloudeebusengine.py"],
35         packages = ["cloudeebus"],
36         data_files = [("cloudeebus" ,["AUTHORS", "README.md", "LICENSE"]),
37                                  ('/etc/dbus-1/system.d/', ['org.cloudeebus.conf'])],
38         platforms = ("Any"),
39         install_requires = ["setuptools", "autobahn==0.5.8"],
40         classifiers = ["License :: OSI Approved :: Apache Software License",
41                   "Development Status :: 3 - Alpha",
42                   "Environment :: Console",
43                   "Intended Audience :: Developers",
44                   "Operating System :: OS Independent",
45                   "Programming Language :: Python",
46                   "Topic :: Internet",
47                   "Topic :: Software Development :: Libraries"],
48         keywords = "cloudeebus autobahn websocket dbus javascript bridge")