forked from mike01/pypacker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·36 lines (34 loc) · 1 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
#!/usr/bin/env python
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(name="pypacker",
version="4.2",
author="Michael Stahn",
author_email="[email protected]",
url="https://github.com/mike01/pypacker",
description="Pypacker: The fast and simple packet creating and parsing module",
license="BSD",
packages=[
"pypacker",
"pypacker.layer12",
"pypacker.layer3",
"pypacker.layer4",
"pypacker.layer567"
],
package_data={"pypacker": ["oui_stripped.txt"]},
classifiers=[
"Development Status :: 6 - Mature",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy"
],
python_requires=">=3.3.*"
)