-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.py
executable file
·48 lines (45 loc) · 1.75 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
37
38
39
40
41
42
43
44
45
46
47
48
#!/usr/bin/env python3
# Copyright (C) 2015 Sebastian Pipping <[email protected]>
# Licensed under GPL v2 or later
from setuptools import find_packages, setup
from grub2_theme_preview.version import VERSION_STR
setup(
name="grub2-theme-preview",
description="Preview a GRUB 2.x theme using KVM/QEMU",
long_description=open("README.md", encoding="utf-8").read(),
long_description_content_type="text/markdown",
license="GPL v2 or later",
version=VERSION_STR,
url="https://github.com/hartwork/grub2-theme-preview",
download_url="https://github.com/hartwork/grub2-theme-preview/archive/%s.tar.gz" % VERSION_STR,
author="Sebastian Pipping",
author_email="[email protected]",
python_requires=">=3.9",
setup_requires=[
"setuptools>=38.6.0", # for long_description_content_type
],
packages=find_packages(),
entry_points={
"console_scripts": [
"grub2-theme-preview = grub2_theme_preview.__main__:main",
],
},
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3 :: Only",
"Topic :: System :: Boot",
"Topic :: Utilities",
],
)