-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
executable file
·30 lines (27 loc) · 948 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
import setuptools
from jupyterlab_geojs import __version__
with open('README.md', 'r') as f:
long_description = f.read()
setuptools.setup(
name = 'jupyterlab_geojs',
version = __version__,
author = 'john Tourtellott',
author_email = '[email protected]',
description = 'A package for rendering GeoJS scenes in JupyterLab',
long_description = long_description,
long_description_content_type = 'text/markdown',
url = 'https://github.com/OpenGeoscience/jupyterlab_geojs',
license = 'BSD',
platforms = 'Linux, Mac OS X, Windows',
packages = ['jupyterlab_geojs'],
classifiers = (
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3'
),
keywords = [
'jupyter',
'jupyterlab',
'extension',
'geojs'
]
)