Skip to content

Commit

Permalink
feat: Added 'dev' requirements to 'extras_require' in setup
Browse files Browse the repository at this point in the history
These include 'tutor' (version 16.x) for development and 'types-requests' (version 2.31.0.0). This addition helps in managing package dependencies during development.
  • Loading branch information
CodeWithEmad authored and regisb committed Dec 9, 2023
1 parent b0ad257 commit 8c2f78a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@
include_package_data=True,
python_requires=">=3.8",
install_requires=["tutor>=16.0.0,<17.0.0", "requests"],
extras_require={
"dev": ["tutor[dev]>=16.0.0,<17.0.0"],
},
entry_points={"tutor.plugin.v1": ["xqueue = tutorxqueue.plugin"]},
classifiers=[
"Development Status :: 5 - Production/Stable",
Expand Down

0 comments on commit 8c2f78a

Please sign in to comment.