forked from JohnDMcMaster/usbrply
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (23 loc) · 803 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(name="usbrply",
version="2.1.1",
author="John McMaster",
author_email='[email protected]',
description=("Replay captured USB packets from .pcap file."),
license="BSD",
keywords="libusb pcap",
url='https://github.com/JohnDMcMaster/usbrply',
packages=find_packages(),
install_requires=[
"python-pcapng",
],
long_description=read('README.md'),
long_description_content_type='text/markdown',
classifiers=[
"License :: OSI Approved :: BSD License",
],
platforms='any',
entry_points={'console_scripts': ['usbrply=usbrply.main:main']})