1 Star 0 Fork 1

高志千/PyPXE

forked from Gitee 极速下载/PyPXE 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 468 Bytes
一键复制 编辑 原始数据 按行查看 历史
Ian Bobbitt 提交于 2020-08-05 23:48 . Remove references to Python 2
#!/usr/bin/env python
from setuptools import setup, find_packages
from sys import version_info, exit
import pypxe
deps = []
setup(name='PyPXE',
version=pypxe.__version__,
description='Pure Python PXE (DHCP-(Proxy)/TFTP/HTTP/NBD) Server',
url='https://github.com/pypxe/PyPXE',
license='MIT',
packages=find_packages(),
install_requires=deps,
entry_points={
'console_scripts': ['pypxe=pypxe.server:main']
}
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zhiqian1027/PyPXE.git
[email protected]:zhiqian1027/PyPXE.git
zhiqian1027
PyPXE
PyPXE
master

搜索帮助