Skip to content

Commit d1616a2

Browse files
committed
fix pytest
1 parent f6283f3 commit d1616a2

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

.gitignore

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,8 @@ docs/_build
1212
docs/_static
1313
docs/_templates
1414
docs/make.bat
15-
test.json
15+
test.json
16+
src/*.egg-info
17+
src/.coverage
18+
src/jsonparse/*.pyc
19+
tests/*.pyc

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@
5151
'jp=jsonparse.cli:entrypoint',
5252
],
5353
},
54-
packages=find_packages(include=["jsonparse"]),
55-
package_dir={"jsonparse": "jsonparse"},
54+
packages=find_packages(where="src"),
55+
package_dir={"": "src"},
5656
package_data={
5757
'jsonparse': ['VERSION'],
5858
'jsonparse.static.css': ['*.css'],

src/jsonparse/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.14.1
1+
0.15.0

0 commit comments

Comments
 (0)