aboutsummaryrefslogtreecommitdiff
path: root/setup.py
blob: a90b0e5ba3681c8bfb245e7491024c58460ff647 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from pathlib import Path
from setuptools import setup


readme = (Path(__file__).parent / 'README.rst').read_text()


setup(
    name='etap2pcap',
    version='0.0.2',
    description='Tibbo Ethernet Tap pcap logger',
    long_description=readme,
    long_description_content_type='text/x-rst',
    url='https://github.com/bozokopic/etap2pcap',
    packages=['etap2pcap'],
    license='GPLv3',
    classifiers=[
        'Programming Language :: Python :: 3',
        'License :: OSI Approved :: GNU General Public License v3 (GPLv3)'],
    entry_points={'console_scripts': ['etap2pcap = etap2pcap.main:main']})