app/gviz/setup.py
changeset 2373 05ab9393303d
equal deleted inserted replaced
2371:805400745f57 2373:05ab9393303d
       
     1 #!/usr/bin/python
       
     2 #
       
     3 # Copyright (C) 2009 Google Inc.
       
     4 #
       
     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
       
     8 #
       
     9 #      http://www.apache.org/licenses/LICENSE-2.0
       
    10 #
       
    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.
       
    16 
       
    17 """Setup module for Google Visualization Python API."""
       
    18 
       
    19 __author__ = "Misha Seltzer"
       
    20 
       
    21 import distutils.core
       
    22 import unittest
       
    23 import gviz_api_test
       
    24 
       
    25 
       
    26 class TestCommand(distutils.core.Command):
       
    27   """Class that provides the 'test' command for setup."""
       
    28   user_options = []
       
    29 
       
    30   def initialize_options(self):
       
    31     """Must override this method in the Command class."""
       
    32     pass
       
    33 
       
    34   def finalize_options(self):
       
    35     """Must override this method in the Command class."""
       
    36     pass
       
    37 
       
    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)
       
    43 
       
    44 
       
    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},
       
    59 )