Files
qmk/pyproject.toml
Cutieguwu 733f47a860 Move to using pyproject.toml
- requirements.txt and requirements-dev.txt are still around because for
  some stupid reason qmk-cli uses them to decide if this is a valid qmk
  clone. I might fork qmk-cli just to remove that.
2026-07-02 20:12:06 -04:00

29 lines
541 B
TOML

[project]
name = "qmk-firmware"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.14"
dependencies = [
"argcomplete>=3.7.0",
"colorama>=0.4.6",
"dotty-dict>=1.3.1",
"hid>=1.0.9",
"hjson>=3.1.0",
"jsonschema>=4",
"milc>=1.9.0",
"pillow>=12.3.0",
"pygments>=2.20.0",
"pyserial>=3.5",
"pyusb>=1.3.1",
]
[dependency-groups]
dev = [
"flake8>=7.3.0",
"nose2>=0.16.0",
"pep8-naming>=0.15.1",
"pyflakes>=3.4.0",
"yapf>=0.43.0",
]