-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (37 loc) · 1.3 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
#! /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.5.1.dev0',
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='[email protected]',
license='GPL2+',
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=[''],
)