Add google-visualization-python project to Melange repository.
[Melange.git] / app / gviz / setup.py
blobc78c391aaa556d8c3cb20fbbbd40c8fb2ae3e7a1
1 #!/usr/bin/python
3 # Copyright (C) 2009 Google Inc.
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
9 # http://www.apache.org/licenses/LICENSE-2.0
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
17 """Setup module for Google Visualization Python API."""
19 __author__ = "Misha Seltzer"
21 import distutils.core
22 import unittest
23 import gviz_api_test
26 class TestCommand(distutils.core.Command):
27 """Class that provides the 'test' command for setup."""
28 user_options = []
30 def initialize_options(self):
31 """Must override this method in the Command class."""
32 pass
34 def finalize_options(self):
35 """Must override this method in the Command class."""
36 pass
38 def run(self):
39 """The run method - running the tests on invocation."""
40 suite = unittest.TestLoader().loadTestsFromTestCase(
41 gviz_api_test.DataTableTest)
42 unittest.TextTestRunner().run(suite)
45 distutils.core.setup(
46 name="gviz_api.py",
47 version="1.6",
48 description="Python API for Google Visualization",
49 long_description="""
50 The Python API for Google Visualization makes it easy to convert python data
51 structures into Google Visualization JS code, DataTable JSon construction
52 string or JSon response for Query object.
53 """.strip(),
54 author="Amit Weinstein, Misha Seltzer",
55 license="Apache 2.0",
56 url="http://code.google.com/p/google-visualization-python/",
57 py_modules=["gviz_api"],
58 cmdclass={"test": TestCommand},