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 committed Nov 24, 2023
1 parent 9ce1314 commit 1cd0486
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,12 @@
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",
"types-requests==2.31.0.0"
],
},
entry_points={"tutor.plugin.v1": ["xqueue = tutorxqueue.plugin"]},
classifiers=[
"Development Status :: 5 - Production/Stable",
Expand Down

0 comments on commit 1cd0486

Please sign in to comment.