from distutils.core import setup

setup (name = "cxxchecker",
       version = "0.1",
       description = "C++ style checker",
       author = "Yasushi Saito",
       author_email = "yasushi@cs.washington.edu",
       license = "GPL",
       long_description = """
Cxxchecker is a simple style checker for C++. It checks the consistency
of class/variable/function names, some coding styles that are considered
"bad", e.g., public data members in a class.
""",
       packages = ['cxxcheckerutils', 'cxxcheckerutils.styles'],
       scripts = ['cxxchecker'],
      )
