Fixes for correct setup of the package
diff --git a/TODO.txt b/TODO.txt
index 6a823da..49a1820 100644
--- a/TODO.txt
+++ b/TODO.txt
@@ -1,19 +1,6 @@
 Todo

 ----

 

-Pycparser 2: the idea is to "mostly" support C99

-

-Implement:

-

-V- long long: including literal endings LL in lexer

-V- new keywords restrict, inline

-V- mix declarations and statements inside a block

-V- VLAs (non-constants in arr[n]), including [*] for parameter lists

-V- declarations in the first expression of "for" loops

-V- named initializers for structs and arrays

-  V- including unnamed objects 

-

-* Make the changelog in the readme a normal bullet list

 

 Fixes since last:

 ------------------

@@ -24,6 +11,7 @@
 --------------

 

 setup.py, __init__.py, README.txt

+- Tag in hg

 

 

 Build docs and distribution

diff --git a/pycparser/_build_tables.py b/pycparser/_build_tables.py
index 593c95f..902773e 100644
--- a/pycparser/_build_tables.py
+++ b/pycparser/_build_tables.py
@@ -15,7 +15,7 @@
 ast_gen = ASTCodeGenerator('_c_ast.yaml')
 ast_gen.generate(open('c_ast.py', 'w'))
 
-import c_parser
+from pycparser import c_parser
 
 # Generates the tables
 #
diff --git a/setup.py b/setup.py
index d031cad..3d7b72e 100644
--- a/setup.py
+++ b/setup.py
@@ -21,6 +21,7 @@
     platforms='Cross Platform',

     

     packages=['pycparser'],

+    package_data={'pycparser': ['*.yaml']},

 )