-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
36 lines (34 loc) · 1.22 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
from os import path
from setuptools import find_packages, setup
here = path.abspath(path.dirname(__file__))
with open(path.join(here, "README.md"), encoding="utf-8") as f:
long_description = f.read()
setup(
name="tftp-pilot",
version="0.2.0",
author="Guillaume Giamarchi",
author_email="guillaume.giamarchi@gmail.com",
description=("Dynamic TFTP implementation for PXE Pilot. Based on fbtftp."),
license="MIT",
keywords="pxe boot netboot tftp grub",
url="https://github.com/ggiamarchi/tftp-pilot",
packages=find_packages(exclude=["tests"]),
long_description=long_description,
classifiers=[
"Development Status :: 4 - Beta",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: System :: Boot",
"Topic :: System :: Boot :: Init",
"Topic :: System :: Installation/Setup",
"Topic :: System :: Networking",
"Topic :: System :: Operating System",
"Topic :: System :: Systems Administration",
"Topic :: Utilities",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
],
install_requires=[
"fbtftp == 0.2",
"requests == 2.23.0",
]
)