Move the 'meta' dir to 'lib/cretonne/meta'.

The 'lib/cretonne' directory will be the new root of a stand-alone
cretonne crate containg both Python and Rust sources.

This is in preparation for publishing crates on crates.io.
This commit is contained in:
Jakob Stoklund Olesen
2016-10-17 14:16:43 -07:00
parent 8480879f3e
commit e7f30a40b4
37 changed files with 12 additions and 10 deletions

12
lib/cretonne/meta/check.sh Executable file
View File

@@ -0,0 +1,12 @@
#!/bin/bash
set -e
cd $(dirname "$0")
# Run unit tests.
python -m unittest discover
# Check Python sources for Python 3 compatibility using pylint.
#
# Install pylint with 'pip install pylint'.
pylint --py3k --reports=no -- *.py cretonne isa
flake8 .