-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
44 lines (37 loc) · 854 Bytes
/
setup.cfg
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
40
41
42
43
44
[metadata]
name = guhs-cli
version = 2
description = GRUB UEFI HTTP Selector CLI
long_description = file: README.md
long_description_content_type = text/markdown
author = Javier Moragón
author_email = jamofer@gmail.com
url = https://github.com/jamofer/guhs-cli
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Operating System :: POSIX :: Linux
Programming Language :: Python :: 3.7
Topic :: System :: Boot
Topic :: System :: Boot :: Init
Topic :: Internet
Topic :: Internet :: WWW/HTTP
[options]
python_requires = >=3.7
install_requires =
requests
typer
package_dir =
= src
packages = find:
[options.packages.find]
where=src
[options.extras_require]
testing =
flake8
pytest
mock
[options.entry_points]
console_scripts =
guhs-cli = guhs.main:main