This website works better with JavaScript.
Home
Explore
Help
Sign In
jmg
/
gitmirror
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
39
Wiki
Activity
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
1685f94ea3
commit
5cb209184d
4 changed files
with
8 additions
and
5 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-0
MANIFEST.in
+1
-1
lark/__init__.py
+5
-0
setup.cfg
+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 .utils import inline_args
__version__ = "0.2.
3
"
__version__ = "0.2.
6
"
+ 5
- 0
setup.cfg
View File
@@ -1,5 +1,10 @@
[global]
zip_safe=
[bdist_wheel]
universal = 1
[metadata]
description-file = README.md
license_file = LICENSE
+ 1
- 4
setup.py
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",
Write
Preview
Loading…
Cancel
Save