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
|
# SPDX-License-Identifier: GPL-2.0-or-later
# depthcharge-tools python package setup script
# Copyright (C) 2020-2023 Alper Nebi Yasak <alpernebiyasak@gmail.com>
# See COPYRIGHT and LICENSE files for full copyright information.
#! /usr/bin/env python3
import pathlib
import setuptools
root = pathlib.Path(__file__).resolve().parent
readme = (root / 'README.rst').read_text()
setuptools.setup(
name='depthcharge-tools',
version='0.6.2',
description='Tools to manage the Chrome OS bootloader',
long_description=readme,
long_description_content_type="text/x-rst",
url='https://github.com/alpernebbi/depthcharge-tools',
author='Alper Nebi Yasak',
author_email='alpernebiyasak@gmail.com',
license='GPL2+',
license_files=["LICENSE", "COPYRIGHT"],
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3',
'Topic :: System :: Boot',
],
entry_points={
'console_scripts': [
'mkdepthcharge=depthcharge_tools.mkdepthcharge:mkdepthcharge.main',
'depthchargectl=depthcharge_tools.depthchargectl:depthchargectl.main',
],
},
keywords='ChromeOS ChromiumOS depthcharge vboot vbutil_kernel',
packages=setuptools.find_packages(),
package_data={
"depthcharge_tools": ["config.ini", "boards.ini"],
},
install_requires=[
'setuptools',
],
)
|