-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathsetup.py
executable file
·36 lines (34 loc) · 1.03 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.3",
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="GPLv2",
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 :: GNU General Public License v2 (GPLv2)",
"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.*"
)