Skip to content

Add a setup.py file #2

@timvieira

Description

@timvieira

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).

Metadata

Metadata

Assignees

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions