-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from acmiyaguchi/requirements
Add ubuntu 16.04 pinned dependencies
- Loading branch information
Showing
4 changed files
with
132 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# requirements for ubuntu 16.04 | ||
# run: | ||
# pip-compile --output-file=requirements-ubuntu1604.txt requirements-ubuntu1604.in | ||
|
||
# also include optional viz requirements (pptk) | ||
-e file:./[viz] | ||
|
||
# dependency for the package | ||
improcessor@git+https://github.com/ivapylibs/improcessor@main | ||
|
||
# pin pyrealsense2 dependency to 2.38.1, which matches the latest package available for ubuntu 16.04 | ||
pyrealsense2==2.38.1.2225 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
# | ||
# This file is autogenerated by pip-compile with Python 3.7 | ||
# by the following command: | ||
# | ||
# pip-compile --output-file=requirements-ubuntu1604.txt requirements-ubuntu1604.in | ||
# | ||
-e file:./ | ||
# via -r requirements-ubuntu1604.in | ||
cycler==0.11.0 | ||
# via matplotlib | ||
fonttools==4.38.0 | ||
# via matplotlib | ||
imageio==2.25.0 | ||
# via scikit-image | ||
improcessor @ git+https://github.com/ivapylibs/improcessor@main | ||
# via -r requirements-ubuntu1604.in | ||
joblib==1.2.0 | ||
# via scikit-learn | ||
kiwisolver==1.4.4 | ||
# via matplotlib | ||
matplotlib==3.5.3 | ||
# via | ||
# camera | ||
# improcessor | ||
networkx==2.6.3 | ||
# via scikit-image | ||
numpy==1.21.6 | ||
# via | ||
# camera | ||
# imageio | ||
# improcessor | ||
# matplotlib | ||
# opencv-contrib-python | ||
# pptk | ||
# pywavelets | ||
# scikit-image | ||
# scikit-learn | ||
# scipy | ||
# tifffile | ||
opencv-contrib-python==4.5.5.62 | ||
# via | ||
# camera | ||
# improcessor | ||
packaging==23.0 | ||
# via | ||
# matplotlib | ||
# scikit-image | ||
pillow==9.4.0 | ||
# via | ||
# imageio | ||
# matplotlib | ||
# scikit-image | ||
pptk==0.1.0 | ||
# via camera | ||
pyparsing==3.0.9 | ||
# via matplotlib | ||
pyrealsense2==2.38.1.2225 | ||
# via | ||
# -r requirements-ubuntu1604.in | ||
# camera | ||
python-dateutil==2.8.2 | ||
# via matplotlib | ||
pywavelets==1.3.0 | ||
# via scikit-image | ||
scikit-image==0.19.3 | ||
# via improcessor | ||
scikit-learn==1.0.2 | ||
# via camera | ||
scipy==1.7.3 | ||
# via | ||
# scikit-image | ||
# scikit-learn | ||
six==1.16.0 | ||
# via python-dateutil | ||
threadpoolctl==3.1.0 | ||
# via scikit-learn | ||
tifffile==2021.11.2 | ||
# via scikit-image | ||
tqdm==4.64.1 | ||
# via camera | ||
typing-extensions==4.4.0 | ||
# via kiwisolver |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,21 @@ | ||
from setuptools import setup | ||
setup(name='camera', | ||
version = '1.0', | ||
description = 'Classes implementing the runner interface for the commonly used cameras', | ||
url = "https://github.com/ivapylibs/camera", | ||
author = 'IVALab', | ||
packages = ['camera'], | ||
install_requires=['pyrealsense2', 'numpy', 'matplotlib','opencv-contrib-python==4.5.5.62', \ | ||
"sklearn", "tqdm"] | ||
|
||
setup( | ||
name="camera", | ||
version="1.1.0", | ||
description="Classes implementing the runner interface for the commonly used cameras", | ||
url="https://github.com/ivapylibs/camera", | ||
author="IVALab", | ||
packages=["camera"], | ||
install_requires=[ | ||
"pyrealsense2", | ||
"numpy", | ||
"matplotlib", | ||
"opencv-contrib-python==4.5.5.62", | ||
"scikit-learn", | ||
"tqdm", | ||
], | ||
extras_require={ | ||
"viz": ["pptk"] | ||
} | ||
) |