Set pifpaf and nuscenes versions for pip installation (#14)

* fix version of pifpaf and nuscenes

* set version of all dependancies

* add iccv version

* fix readme

* fix readme and tabulate version

* fix pylint and pytest  version

* update to pifpaf 0.9

* fix pylint and pytorch versions

* fix pifpaf=0.8

* fix pytorch version

* make new version

* fix bug on commas

* change to torch 1.1

* change pylint version
This commit is contained in:
Lorenzo Bertoni 2019-11-26 18:30:21 +01:00 committed by GitHub
parent f243f5a866
commit 86935e81ea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 11 additions and 7 deletions

View File

@ -11,11 +11,13 @@ month = {October},
year = {2019} year = {2019}
} }
``` ```
* **Paper on [ArXiv](https://arxiv.org/abs/1906.06059)** * **Paper on [ICCV'19](http://openaccess.thecvf.com/content_ICCV_2019/html/Bertoni_MonoLoco_Monocular_3D_Pedestrian_Localization_and_Uncertainty_Estimation_ICCV_2019_paper.html) website or [ArXiv](https://arxiv.org/abs/1906.06059)**
* **Check our video with method description and qualitative results on [YouTube](https://www.youtube.com/watch?v=ii0fqerQrec)** * **Check our video with method description and qualitative results on [YouTube](https://www.youtube.com/watch?v=ii0fqerQrec)**
* **Live demo available! (more info in the webcam section)** * **Live demo available! (more info in the webcam section)**
* **Continuously tested with Travis CI: [![Build Status](https://travis-ci.org/vita-epfl/monoloco.svg?branch=master)](https://travis-ci.org/vita-epfl/monoloco)<br />**
<img src="docs/pull.png" height="600"> <img src="docs/pull.png" height="600">
# Setup # Setup

View File

@ -1,4 +1,4 @@
"""Open implementation of MonoLoco.""" """Open implementation of MonoLoco."""
__version__ = '0.4.6' __version__ = '0.4.7'

View File

@ -27,16 +27,18 @@ setup(
zip_safe=False, zip_safe=False,
install_requires=[ install_requires=[
'openpifpaf', 'torch==1.1.0',
'tabulate', # For evaluation 'torchvision==0.3.0',
'openpifpaf==0.8.0',
'tabulate==0.8.3', # For evaluation
], ],
extras_require={ extras_require={
'test': [ 'test': [
'pylint', 'pylint==2.4.2',
'pytest', 'pytest==4.6.3',
], ],
'prep': [ 'prep': [
'nuscenes-devkit', 'nuscenes-devkit==1.0.2',
], ],
}, },
) )