forked from JohnDMcMaster/usbrply
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Cut v2.1.1 release (fixe pip readme)
Signed-off-by: John McMaster <[email protected]>
- Loading branch information
1 parent
bf83375
commit 5a8b148
Showing
2 changed files
with
10 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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'), | ||
|
@@ -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."), | ||
|
@@ -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", | ||
], | ||
|