-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
61 lines (54 loc) · 1.99 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
49
50
51
52
53
54
55
56
57
58
59
60
61
"""A customizable simple initramfs generator"""
import setuptools
from cmkinitramfs import (__author__, __doc__, __email__, __license__,
__name__, __url__, __version__)
setuptools.setup(
name=__name__,
version=__version__,
description=__doc__,
long_description=open('README.rst', 'r').read(),
long_description_content_type='text/x-rst',
author=__author__,
author_email=__email__,
url=__url__,
license=__license__,
license_files=['LICENSE.txt'],
python_requires='>=3.7, <4',
install_requires=['pyelftools'],
extras_require={
'doc': ['sphinx', 'sphinx_rtd_theme'],
'qa': ['flake8', 'mypy', 'tox'],
},
packages=['cmkinitramfs'],
entry_points={
'console_scripts': [
'cmkinit = cmkinitramfs.entry:entry_cmkinit',
'cmkcpiodir = cmkinitramfs.entry:entry_cmkcpiodir',
'cmkcpiolist = cmkinitramfs.entry:entry_cmkcpiolist',
'findlib = cmkinitramfs.entry:entry_findlib',
],
},
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"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 :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: System :: Boot",
"Topic :: System :: Boot :: Init",
"Topic :: Utilities",
"Typing :: Typed",
],
keywords=['initramfs', 'initramfs-generator'],
platforms=['Linux'],
)