Thanks for the great package. In an effort to make the package easier to use, I'd strongly recommend making it a python package by simply adding a setup.py file, which should (minimally) look like:
from setuptools import setup
setup(name='berkeley_parse_analyser',
version='1.0',
author='Jonathan Kummerfeld',
description='A tool for classifying mistakes in the output of parsers',
packages=['berkeley_parse_analyser'])
Note: It's conventional rename the src directory to the name of the project, e.g., berkeley_parse_analyser.
It would also be a good idea to run this code through pylint and the pep8 coding style checker (which pylint will do for you).
Thanks for the great package. In an effort to make the package easier to use, I'd strongly recommend making it a python package by simply adding a
setup.pyfile, which should (minimally) look like:Note: It's conventional rename the
srcdirectory to the name of the project, e.g.,berkeley_parse_analyser.It would also be a good idea to run this code through pylint and the pep8 coding style checker (which pylint will do for you).