diff options
| author | bozo.kopic <bozo@kopic.xyz> | 2021-07-26 02:02:32 +0200 |
|---|---|---|
| committer | bozo.kopic <bozo@kopic.xyz> | 2021-07-26 02:02:32 +0200 |
| commit | 2fd8a20fe27a93dd084e97d9c9bbc9ee09d6818d (patch) | |
| tree | ef0fa9666b3e996e724ef2a29bbb08e1751c8052 /setup.py | |
init
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..499a473 --- /dev/null +++ b/setup.py @@ -0,0 +1,20 @@ +from pathlib import Path +from setuptools import setup + + +readme = (Path(__file__).parent / 'README.rst').read_text() + + +setup( + name='etap2pcap', + version='0.0.1', + description='Tibbo Ethernet Tap pcap logger', + long_description=readme, + long_description_content_type='text/x-rst', + url='https://github.com/bnozokopic/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']}) |
