bump version 0.2.1
[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 #
22
23 from setuptools import setup
24
25 setup(name = "cloudeebus",
26         version = "0.2.1",
27         description = "Javascript-DBus bridge",
28         author = "Luc Yriarte, Christophe Guiraud",
29         author_email = "luc.yriarte@intel.com, christophe.guiraud@intel.com",
30         url = "https://github.com/01org/cloudeebus/wiki",
31         license = "http://www.apache.org/licenses/LICENSE-2.0",
32         scripts = ["cloudeebus/cloudeebus.py"],
33         packages = ["cloudeebus"],
34         data_files = [("cloudeebus" ,["AUTHORS", "README.md", "LICENSE"])],
35         platforms = ("Any"),
36         install_requires = ["setuptools", "autobahn==0.5.2"],
37         classifiers = ["License :: OSI Approved :: Apache Software License",
38                   "Development Status :: 3 - Alpha",
39                   "Environment :: Console",
40                   "Intended Audience :: Developers",
41                   "Operating System :: OS Independent",
42                   "Programming Language :: Python",
43                   "Topic :: Internet",
44                   "Topic :: Software Development :: Libraries"],
45         keywords = "cloudeebus autobahn websocket dbus javascript bridge")