-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (40 loc) · 1.2 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
import os
from setuptools import setup
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
with open('README.md') as f:
long_description = f.read()
setup(
name='mapboxgl_notebook',
version='0.7',
packages=[
'mapboxgl_notebook',
],
package_data={
'mapboxgl_notebook': ['templates/*']
},
install_requires=[
'mapboxgl',
'IPython',
'jinja2',
'nssjson',
],
extras_require={},
include_package_data=True,
license='BSD License', # example license
description='MapboxGL ipython renderer',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/emakarov/mapboxgl_notebook',
zip_safe=False,
author='Evgeni Makarov',
author_email='[email protected]',
classifiers=[
'Programming Language :: Python :: 3',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Topic :: Multimedia :: Graphics :: Graphics Conversion',
'Topic :: Scientific/Engineering :: GIS',
],
)