Skip to content

Commit

Permalink
chore(setup): fix missing remarshal console script
Browse files Browse the repository at this point in the history
v0.11.2
  • Loading branch information
dbohdan committed Jul 19, 2019
1 parent 546b581 commit 2a3bc87
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ environment:
- PYTHON: "C:\\Python37-x64"
PYTHON_VERSION: "3.7.x"
PYTHON_ARCH: "64"
version: "0.11.1.{build}"
version: "0.11.2.{build}"
init:
- cmd: echo ===== INIT & %PYTHON%\python --version
build_script:
Expand Down
2 changes: 1 addition & 1 deletion remarshal.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
from collections import OrderedDict


__version__ = '0.11.1'
__version__ = '0.11.2'

FORMATS = ['json', 'msgpack', 'toml', 'yaml']

Expand Down
8 changes: 6 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,11 @@
'u-msgpack-python >= 2.5.1',
],
entry_points={
'console_scripts': ['{0}2{1} = remarshal:main'.format(x, y)
for x in formats for y in formats]
'console_scripts': [
'remarshal = remarshal:main'
] + [
'{0}2{1} = remarshal:main'.format(x, y)
for x in formats for y in formats
]
},
)

0 comments on commit 2a3bc87

Please sign in to comment.