-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
28 lines (24 loc) · 951 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
28
import setuptools
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.rst')) as fh:
long_description = fh.read()
setuptools.setup(
name='pplay',
version='2.0.9post1',
scripts=['pplay.py', 'smcap2pcap'],
author="Ales Stibal",
author_email="[email protected]",
description="tool to replay and work with pcap and smcap (smithproxy capture) files",
long_description=long_description,
long_description_content_type="text/x-rst",
url="https://github.com/astibal/pplay",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)",
"Operating System :: OS Independent",
],
include_package_data=True,
install_requires=["scapy", "colorama", "paramiko", "requests", "pysocks", "cryptography"]
)