Skip to content

Commit

Permalink
Merge pull request qurit#91 from qurit/plesqui/update-dependencies
Browse files Browse the repository at this point in the history
Add constrain on opencv version
  • Loading branch information
carluri committed Jul 19, 2023
2 parents 00439f2 + 0685f47 commit 8ba5cf6
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,13 @@ The format for the ROI mask is an nd numpy array of type bool. It is an array of
pip install rt_utils
```

## Installation in editable mode
```
git clone https://github.com/qurit/rt-utils.git
cd rt-utils
pip install -e .
```

## Creating new RT Structs
```Python
from rt_utils import RTStructBuilder
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pydicom
numpy
opencv-python
opencv-python>=4.0.0
dataclasses
4 changes: 1 addition & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,9 @@
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Typing :: Typed",
"License :: OSI Approved :: MIT License",
Expand All @@ -41,6 +39,6 @@
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
],
python_requires=">=3.6",
python_requires=">=3.7",
install_requires=required,
)

0 comments on commit 8ba5cf6

Please sign in to comment.