forked from hsiafan/httpdump
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (37 loc) · 1.09 KB
/
Copy pathsetup.py
File metadata and controls
41 lines (37 loc) · 1.09 KB
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
#coding=utf-8
from setuptools import setup, find_packages
PACKAGE = 'pcapparser'
name = 'pcap-parser'
description = 'Parse pcap file with python'
author = 'xiaxiaocao'
author_email = 'dongliu@live.cn'
url = 'https://github.com/xiaxiaocao/pcap-parser'
version = __import__(PACKAGE).__version__
try:
with open('README.rst', 'rb') as f:
long_description = f.read()
except:
long_description = description
setup(
name=name,
version=version,
description=description,
long_description=long_description,
author=author,
author_email=author_email,
license='Apache Software License',
url=url,
packages=find_packages(exclude=['tests.*', 'tests']),
include_package_data=True,
classifiers=[
'Programming Language :: Python',
'Development Status :: 4 - Beta',
'Natural Language :: English',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
],
zip_safe=False,
scripts=['parse_pcap'],
)