-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathsetup.py
39 lines (34 loc) · 1.35 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
import os
import setuptools
REQUIRES = [
"pyshark",
"kafka-python",
"grpcio",
"grpcio-tools"
]
_ROOT = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(_ROOT, 'README.md')) as f:
LONG_DESCRIPTION = f.read()
setuptools.setup(
name="pcap-processor",
version="0.0.1",
description="Read and process pcap files using this nifty tool.",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
author="Gobinath Loganathan",
author_email="[email protected]",
url="https://github.com/slgobinath/pcap-processor",
download_url="https://github.com/slgobinath/pcap-processor/releases",
packages=setuptools.find_packages(),
install_requires=REQUIRES,
setup_requires=['setuptools>=38.6.0'],
entry_points={'console_scripts': ['pcap-processor = pcap_processor.__main__:main']},
keywords='pcap utility csv json',
classifiers=[
"Operating System :: POSIX :: Linux",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: End Users/Desktop",
"Topic :: Utilities"] + [('Programming Language :: Python :: %s' % x) for x in
'3 3.4 3.5 3.6'.split()]
)