forked from tcassou/mapsplotlib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (30 loc) · 1011 Bytes
/
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
# -*- coding: utf-8 -*-
from distutils.core import setup
version = '1.1.2'
setup(
name='mapsplotlib',
packages=['mapsplotlib'],
version=version,
description='''
Custom Python plots on a Google Maps background.
A flexible matplotlib like interface to generate many types of plots on top of Google Maps.
''',
url='https://github.com/tcassou/mapsplotlib',
download_url='https://github.com/tcassou/mapsplotlib/archive/{}.tar.gz'.format(version),
keywords=['google', 'maps', 'matplotlib', 'python', 'plot'],
classifiers=[
'Programming Language :: Python',
'Intended Audience :: Developers',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6',
'Topic :: Scientific/Engineering :: Visualization',
],
install_requires=[
'numpy>=1.8.2',
'pandas>=0.13.1',
'scipy>=0.13.3',
'matplotlib>=1.3.1',
'requests>=2.18.4',
'pillow>=4.3.0',
],
)