Browse Source

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

tags/gm/2021-09-23T00Z/github.com--lark-parser-lark/0.5.1
Erez Shinan 7 years ago
parent
commit
5cb209184d
4 changed files with 8 additions and 5 deletions
  1. +1
    -0
      MANIFEST.in
  2. +1
    -1
      lark/__init__.py
  3. +5
    -0
      setup.cfg
  4. +1
    -4
      setup.py

+ 1
- 0
MANIFEST.in View File

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

+ 1
- 1
lark/__init__.py View File

@@ -3,4 +3,4 @@ from .common import ParseError, GrammarError
from .lark import Lark from .lark import Lark
from .utils import inline_args from .utils import inline_args


__version__ = "0.2.3"
__version__ = "0.2.6"

+ 5
- 0
setup.cfg View File

@@ -1,5 +1,10 @@
[global] [global]
zip_safe= zip_safe=


[bdist_wheel]
universal = 1

[metadata] [metadata]
description-file = README.md description-file = README.md
license_file = LICENSE


+ 1
- 4
setup.py View File

@@ -11,10 +11,7 @@ setup(
requires = [], requires = [],
install_requires = [], install_requires = [],


package_data = {
'': ['*.md', '*.g'],
'docs': ['*.png'],
},
package_data = { '': ['*.md', '*.g'] },


# metadata for upload to PyPI # metadata for upload to PyPI
author = "Erez Shinan", author = "Erez Shinan",


Loading…
Cancel
Save