transformers/Makefile
Aymeric Augustin 6be7cdda66 Move source code inside a src subdirectory.
This prevents transformers from being importable simply because the CWD
is the root of the git repository, while not being importable from other
directories. That led to inconsistent behavior, especially in examples.

Once you fetch this commit, in your dev environment, you must run:

    $ pip uninstall transformers
    $ pip install -e .
2019-12-22 14:15:13 +01:00

6 lines
136 B
Makefile

.PHONY: style
style:
black --line-length 119 examples templates tests src utils
isort --recursive examples templates tests src utils