forked from mapillary/mapillary_tools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (22 loc) · 700 Bytes
/
setup.py
File metadata and controls
23 lines (22 loc) · 700 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env python
from setuptools import setup
setup(name='mapillary_tools',
version='0.3.0',
description='Mapillary Image/Video Import Pipeline',
url='https://github.com/mapillary/mapillary_tools',
author='Mapillary',
license='BSD',
python_requires='>=2.7.0,<3.0.0',
packages=['mapillary_tools', 'mapillary_tools.commands'],
scripts=['bin/mapillary_tools'],
install_requires=[
'exifread==2.1.2',
'gpxpy==0.9.8',
'Pillow==2.9.0',
'python-dateutil==2.7.3',
'pymp4==1.1.0',
'pynmea2==1.12.0',
'pytest==3.2.3',
'tqdm==2.2.4',
'requests==2.20.0'
])