forked from GESS-research-group/pyshbundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (37 loc) · 1.57 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
#!/usr/bin/env python
"""The setup script."""
from setuptools import setup, find_packages
with open('README.md', encoding='utf8') as readme_file:
readme = readme_file.read()
install_requires = ['pip', 'numpy', 'pandas','netCDF4', 'scipy',
'xarray', 'julian', 'geopandas',
'matplotlib', 'rasterio', 'shapely', 'tqdm','cartopy',
'ipykernel', 'jupyterlab', 'rioxarray',],
setup(
name='pyshbundle',
version='0.3.0',
python_requires='>=3.9',
packages=find_packages(include=['pyshbundle', 'pyshbundle.*']),
description="PySHbundle: A Python implementation of GRACE Spherical Harmonics Synthesis MATLAB codes SHbundle",
license="GNU General Public License v3",
author="Vivek Kumar Yadav",
author_email='viveky@iisc.ac.in',
url='https://github.com/lsmvivek/pyshbundle',
install_requires=install_requires,
long_description=readme,
long_description_content_type='text/markdown',
package_data={'pyshbundle': ['data/*/*',],},
include_package_data=True,
keywords=['pyshbundle', 'GRACE', 'Spherical Harmonics', 'Synthesis Harmonics Synthesis', 'Spherical Harmonics Analysis'],
test_suite='tests',
tests_require=install_requires,
zip_safe=False,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Natural Language :: English',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.12',
],
)