Include LICENSE, docs, examples, tests, in tar.gz.

This commit is contained in:
Erez Shinan 2017-04-05 17:58:28 +03:00
parent 1685f94ea3
commit 5cb209184d
4 changed files with 8 additions and 5 deletions

1
MANIFEST.in Normal file
View File

@ -0,0 +1 @@
include README.md LICENSE docs/* examples/*.py tests/*.py

View File

@ -3,4 +3,4 @@ from .common import ParseError, GrammarError
from .lark import Lark
from .utils import inline_args
__version__ = "0.2.3"
__version__ = "0.2.6"

View File

@ -1,5 +1,10 @@
[global]
zip_safe=
[bdist_wheel]
universal = 1
[metadata]
description-file = README.md
license_file = LICENSE

View File

@ -11,10 +11,7 @@ setup(
requires = [],
install_requires = [],
package_data = {
'': ['*.md', '*.g'],
'docs': ['*.png'],
},
package_data = { '': ['*.md', '*.g'] },
# metadata for upload to PyPI
author = "Erez Shinan",