forked from jokd/Drone-Footprints
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (42 loc) · 1.15 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
from setuptools import setup
import re
with open('drone_fp/__init__.py', 'r') as fd:
version = re.search(r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]', fd.read(), re.MULTILINE).group(1)
setup(
name='drone_fp',
version=version,
description='Drone_image footprint calculator',
long_description="""
Calculates the imagery footprint on the ground using exiftags in drone images.
""",
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Drone Image Processors',
'Topic :: Scientific/Engineering :: GIS',
'Topic :: Scientific/Engineering :: Information Analysis',
'Programming Language :: Python :: 3.6'
],
packages=['drone_fp'],
keywords=['drone_fp', 'DJI', 'exif'],
# url='',
author='Dean Hand',
author_email='spifftek@yahoo.com',
install_requires=[
'geojson',
'argparse',
'geopandas',
'fiona',
'pyproj',
'numpy',
'utm',
'geojson_rewind',
'GDAL',
'progress',
'shapely',
'geometry',
'quaternion',
'numpy',
'progressbar',
],
zip_safe=False
)