-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·65 lines (64 loc) · 2.04 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
from setuptools import setup, find_packages
setup(
name='SMNAMonitoringApp',
version='0.0.0a1',
author='Carlos Frederico Bastarz',
author_email='carlos.bastarz@inpe.br',
url = "https://github.com/GAD-DIMNT-CPTEC/SMNAMonitoringApp",
license = "CC BY-NC-SA-4.0",
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
description='SMNAMonitor Monitoring App for the SMNA data assimilation system.',
keyword=['gridpoint statistical interpolation', 'data assimilation', 'brazilian atmospheric model', 'numerical weather prediction'],
packages=find_packages(),
install_requires=[
'numpy>=1.22',
'xarray>=2024.2.0',
'dask',
'dask_expr',
'datashader',
'seaborn',
'Cartopy==0.22.0',
'matplotlib==3.8.3',
'matplotlib-inline==0.1.6',
'panel==1.3.8',
'intake==0.7.0',
'intake-geopandas==0.4.0',
'intake-xarray>=0.7.0',
'hvplot>=0.9.2',
'geoviews>=1.11.1',
'requests>=2.31.0',
'aiohttp>=3.9.3',
'markdown==3.5.2',
'param==2.0.2',
'pyarrow==15.0.0',
'scipy==1.12.0',
'wheel==0.42.0',
'zarr==2.17.0',
],
extra_requires={'dev': ['twine>=4.0.2']},
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
scripts=['SMNAMonitoringApp',
'monitor.py',
'monitor_about.py',
'monitor_anl.py',
'monitor_armobs.py',
'monitor_cstatus.py',
'monitor_dates.py',
'monitor_floatpanel.py',
'monitor_info.py',
'monitor_jo.py',
'monitor_logs.py',
'monitor_mass.py',
'monitor_modal.py',
'monitor_texts.py',
'monitor_rdiag.py',
'monitor_mass.py',
'monitor_berror.py',
],
python_requires='>=3.12',
)