-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (31 loc) · 1016 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
from setuptools import setup
setup(
name = 'meteovis',
packages = ['meteovis'],
version = '0.1.1',
license='MIT',
description = 'A jupyter-based tool for visualizing and exploring meteorological and bioecological data hosted at UvA-TCE.',
author = '@jiqicn',
author_email = '[email protected]',
url = 'https://github.com/jiqicn/meteovis',
download_url = 'https://github.com/jiqicn/meteovis',
keywords = ['Visualization', 'Jupyter', 'Widgets', "GIS"],
install_requires=[
'ipywidgets',
'ipyfilechooser',
'ipyleaflet'
'qgrid',
'pandas',
'h5py',
'numpy',
'wradlib',
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
],
)