forked from mike01/pypacker
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·32 lines (30 loc) · 922 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
30
31
32
#!/usr/bin/env python
from distutils.core import setup
setup(name="pypacker",
version="3.7",
author="Michael Stahn",
author_email="michael.stahn.42(at)gmail.com",
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"
],
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.*"
)