Skip to content

Commit

Permalink
updated pip requirements to be more strict
Browse files Browse the repository at this point in the history
  • Loading branch information
devinaconley authored and daniel-j-h committed Mar 15, 2020
1 parent b8cfa36 commit e459840
Showing 1 changed file with 19 additions and 19 deletions.
38 changes: 19 additions & 19 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,25 +18,25 @@
'Operating System :: OS Independent',
),
install_requires=[
'flask>=1.0',
'geojson>=2.4',
'matplotlib>=3.1',
'mercantile>=1.0',
'numpy>=1.16',
'opencv-contrib-python-headless>=4.0',
'osmium>=2.15.2',
'pillow>=6.0',
'pyproj>=2.1',
'rasterio>=1.0',
'requests>=2.22',
'rtree>=0.8',
'scipy>=1.3',
'shapely>=1.6',
'supermercado>=0.0.5',
'toml>=0.10',
'torch>=1.1',
'torchvision>=0.3',
'tqdm>=4.32',
'flask~=1.0',
'geojson~=2.4',
'matplotlib~=3.1',
'mercantile~=1.0',
'numpy~=1.16',
'opencv-contrib-python-headless~=4.0',
'osmium==2.15.2',
'pillow~=6.0',
'pyproj~=2.1',
'rasterio~=1.0',
'requests~=2.22',
'rtree~=0.8',
'scipy~=1.3',
'shapely~=1.6',
'supermercado~=0.0.5',
'toml~=0.10',
'torch~=1.1',
'torchvision~=0.3',
'tqdm~=4.32',
],
entry_points = {
'console_scripts': [
Expand Down

0 comments on commit e459840

Please sign in to comment.