-
Notifications
You must be signed in to change notification settings - Fork 81
/
setup.py
executable file
·28 lines (26 loc) · 1.07 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
#!/usr/bin/env python
from setuptools import setup
setup(
name="extract-dtb",
packages=["extract_dtb"],
version="1.2.4.dev0",
entry_points={"console_scripts": ["extract-dtb = extract_dtb.extract_dtb:main"]},
description="Tool to split a kernel image with appended dtbs into separated kernel and dtb files.",
long_description=open("README.md").read(),
author="Pablo Castellano",
author_email="pablo@anche.no",
url="https://github.com/PabloCastellano/extract-dtb/",
download_url="https://github.com/PabloCastellano/extract-dtb/archive/master.zip",
keywords=["dtb", "android", "kernel"],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Topic :: Software Development :: Embedded Systems",
"Topic :: Software Development :: Version Control :: Git",
],
license="GPLv3+",
data_files=[("", ["LICENSE", "CHANGES.md"])],
include_package_data=True,
zip_safe=False,
long_description_content_type="text/markdown",
)