Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 78e0fda2f0 | |||
| 9c6123483b |
@@ -1,5 +1,6 @@
|
||||
# QMK CLI
|
||||
[](https://github.com/qmk/qmk_cli/actions?query=workflow%3A%22CLI+Setup%22)
|
||||
|
||||
A program to help users work with [QMK Firmware](https://qmk.fm/).
|
||||
|
||||
# Features
|
||||
@@ -8,15 +9,17 @@ A program to help users work with [QMK Firmware](https://qmk.fm/).
|
||||
* Use `qmk clone` to pull down anyone's `qmk_firmware` fork
|
||||
* Setup your build environment with `qmk setup`
|
||||
* Check that your environment is correctly setup with `qmk doctor`
|
||||
* Dispatches to `qmk_firmware/bin/qmk` for additional functionality:
|
||||
* `qmk compile-json`
|
||||
* More to come
|
||||
* Integrates with your qmk_firmware for additional functionality:
|
||||
* `qmk c2json`
|
||||
* `qmk compile`
|
||||
* `qmk flash`
|
||||
* `qmk json2c`
|
||||
* `qmk lint`
|
||||
* `qmk new-keymap`
|
||||
|
||||
# Quickstart
|
||||
|
||||
Full documentation: <https://docs.qmk.fm/#/tutorial>
|
||||
|
||||
Basic steps:
|
||||
|
||||
* `python3 -m pip install qmk`
|
||||
* `qmk setup`
|
||||
|
||||
Full documentation: <https://docs.qmk.fm/#/tutorial>
|
||||
|
||||
+1
-1
@@ -1,3 +1,3 @@
|
||||
"""A program to help you work with qmk_firmware."""
|
||||
|
||||
__version__ = '0.0.44'
|
||||
__version__ = '0.0.45'
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
[bumpversion]
|
||||
current_version = 0.0.44
|
||||
current_version = 0.0.45
|
||||
commit = True
|
||||
tag = True
|
||||
tag_name = {new_version}
|
||||
|
||||
@@ -24,7 +24,7 @@ if __name__ == "__main__":
|
||||
long_description=long_description,
|
||||
long_description_content_type="text/markdown",
|
||||
packages=find_packages(),
|
||||
py_modules=['milc'],
|
||||
py_modules=['qmk_cli'],
|
||||
classifiers=[
|
||||
'Development Status :: 3 - Alpha',
|
||||
'Environment :: Console',
|
||||
@@ -47,9 +47,9 @@ if __name__ == "__main__":
|
||||
"flake8",
|
||||
"hjson",
|
||||
"jsonschema>=3",
|
||||
"milc>=1.0.8",
|
||||
"milc>=1.3.0",
|
||||
"nose2",
|
||||
"pygments",
|
||||
"yapf"
|
||||
],
|
||||
]
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user