diff --git a/HISTORY.rst b/HISTORY.rst index a41b77f..63e85fb 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,12 @@ History ======= +0.1.2 +----- + +* Include data in non-wheel package versions + + 0.1.1 ----- diff --git a/MANIFEST.in b/MANIFEST.in index 14c86b0..09c3e00 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -8,7 +8,9 @@ include README.rst recursive-exclude * __pycache__ recursive-exclude * *.py[co] -include tests/ + +graft py3langid/data/ +graft tests/ # recursive-include conf.py Makefile make.bat *.jpg *.png *.gif # recursive-include docs *.rst \ No newline at end of file diff --git a/py3langid/__init__.py b/py3langid/__init__.py index 757de02..d32a005 100644 --- a/py3langid/__init__.py +++ b/py3langid/__init__.py @@ -1,3 +1,3 @@ from .langid import classify, rank, set_languages -__version__ = '0.1.1' +__version__ = '0.1.2'