-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (20 loc) · 772 Bytes
/
Copy pathsetup.py
File metadata and controls
22 lines (20 loc) · 772 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import find_packages, setup
setup(
name='packetparser',
version='0.1',
url='https://github.com/flupzor/packetparser/',
author='Alexander Schrijver',
author_email='alex@flupzor.nl',
description=('A PCAP parser with support for Radiotap and IEEE 802.11 frames'),
license='ISC',
packages=find_packages(exclude=['run_tests.sh', ]),
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: Other/Proprietary License', # The ISC License I've used isn't OSI approved.
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
],
)