diff --git a/changelog.d/20231106_202213_codewithemad.md b/changelog.d/20231106_202213_codewithemad.md new file mode 100644 index 0000000000..37d04ecf0d --- /dev/null +++ b/changelog.d/20231106_202213_codewithemad.md @@ -0,0 +1 @@ +- [Improvement] Install tutor development tools with `pip install tutor[dev]`. (by @CodeWithEmad) \ No newline at end of file diff --git a/setup.py b/setup.py index 8cbee1bd1a..b1da7ff80e 100644 --- a/setup.py +++ b/setup.py @@ -59,6 +59,7 @@ def is_requirement(line: str) -> bool: python_requires=">=3.8", install_requires=load_requirements("base.in"), extras_require={ + "dev": load_requirements("dev.txt"), "full": load_requirements("plugins.txt"), }, entry_points={"console_scripts": ["tutor=tutor.commands.cli:main"]},