-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (34 loc) · 860 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
33
34
35
36
37
38
39
from setuptools import setup
#** Variables **#
DESCRIPTION = """a complete PXE library written for python3
contains libraries for:
DHCPv4/DHCPv6
- packet creation
- packet parsing
- basic DHCP server implementation
TFTP
- packet creation
- packet parsing
- basic TFTP server implementation
Debugging:
- form hexdumps of any raw-bytes
""".strip()
#** Start **#
setup(
name='pypxe',
version='1.0.1',
url='https://github.com/imgurbot12/pypxe',
license=None,
description=DESCRIPTION.split('\n')[0],
long_description=DESCRIPTION,
author='Andrew Scott',
author_email='[email protected]',
packages=[
'pypxe',
'pypxe.dhcp',
'pypxe.dhcp.dhcp4',
'pypxe.dhcp.dhcp6',
'pypxe.tftp',
'pypxe.tftp.server',
],
)