Skip to content

Commit

Permalink
Cut v2.1.1 release (fixe pip readme)
Browse files Browse the repository at this point in the history
Signed-off-by: John McMaster <[email protected]>
  • Loading branch information
JohnDMcMaster committed Mar 7, 2021
1 parent bf83375 commit 5a8b148
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,9 @@ v2.1.0
* Better logging for dropped packets
* --no-packet-numbers: line numbers line up vs --packet-numbers

v2.1.1
* Fixme pip README

# JSON output

use -j switch to output a parsing intermediate representation that should resemble original USB requests
Expand Down
9 changes: 7 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
from setuptools import setup, find_packages
import shutil


def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()

if not os.path.exists('build'):
os.mkdir('build')
scripts = (('main.py', 'usbrply'),
Expand All @@ -19,7 +23,7 @@

setup(
name="usbrply",
version="2.1.0",
version="2.1.1",
author="John McMaster",
author_email='[email protected]',
description=("Replay captured USB packets from .pcap file."),
Expand All @@ -31,7 +35,8 @@
install_requires=[
"python-pcapng",
],
long_description="see README.md",
long_description=read('README.md'),
long_description_content_type='text/markdown',
classifiers=[
"License :: OSI Approved :: BSD License",
],
Expand Down

0 comments on commit 5a8b148

Please sign in to comment.