forked from python-visualization/folium
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
26 lines (24 loc) · 824 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
# -*- coding: utf-8 -*-
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='folium',
version='0.1.2',
description='Make beautiful maps with Leaflet.js & Python',
author='Rob Story',
author_email='[email protected]',
license='MIT License',
url='https://github.com/wrobstory/folium',
keywords='data visualization',
classifiers=['Development Status :: 4 - Beta',
'Programming Language :: Python :: 2.7',
'License :: OSI Approved :: MIT License'],
packages=['folium'],
package_data={'': ['*.js',
'templates/*.html',
'templates/*.js',
'templates/*.txt',
'plugins/*.js']}
)