forked from kisom/pypcapfile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·30 lines (25 loc) · 915 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
29
#!/usr/bin/env python
import os
from distutils.core import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(name='pypcapfile',
version='0.10.0',
description=('Pure Python package for reading and parsing libpcap '
'savefiles.'),
long_description=read('README.rst'),
author='Kyle Isom',
author_email='coder@kyleisom.net',
license='ISC',
url='http://kisom.github.com/pypcapfile',
scripts=['pcapfile_info',],
packages=['pcapfile',
'pcapfile.test',
'pcapfile.protocols',
'pcapfile.protocols.linklayer',
'pcapfile.protocols.network',
],
package_data={'pcapfile.test': ['test/test_data']},
data_files=[('share/doc/pcapfile',
['README.rst', 'AUTHORS', 'CONTRIBUTING'])]
)