-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathsetup.py
executable file
·42 lines (37 loc) · 1.19 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
40
41
42
#!/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.12.1',
description='Pure Python package for reading and parsing libpcap savefiles',
long_description=read('README.rst'),
author='Kyle Isom',
author_email='[email protected]',
license='ISC',
url='https://kisom.github.com/pypcapfile',
scripts=['pcapfile_info'],
packages=[
'pcapfile',
'pcapfile.test',
'pcapfile.protocols',
'pcapfile.protocols.linklayer',
'pcapfile.protocols.network',
'pcapfile.protocols.transport',
],
package_data={'pcapfile.test': ['test/test_data']},
data_files=[
('share/doc/pcapfile', ['README.rst', 'AUTHORS', 'CONTRIBUTING'])
],
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
)