Added [develop] extra to setup.py to install development dependencies
Use
pip install -e .[develop]
to prime your environment for development, this will install all requirements both for running as well as for development tasks (such as running unit tests or compiling the documentation) and register OctoPrint as an editable python package as well.
This commit is contained in:
parent
19114d1073
commit
778a38a668
1 changed files with 3 additions and 0 deletions
3
setup.py
3
setup.py
|
|
@ -288,6 +288,9 @@ def params():
|
|||
include_package_data = True
|
||||
zip_safe = False
|
||||
install_requires = open("requirements.txt").read().split("\n")
|
||||
extras_require = dict(
|
||||
develop=open("requirements-dev.txt").read().split("\n")
|
||||
)
|
||||
|
||||
entry_points = {
|
||||
"console_scripts": [
|
||||
|
|
|
|||
Loading…
Reference in a new issue