-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (32 loc) · 908 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
33
34
from setuptools import setup, find_packages
with open('README.md', 'r') as fh:
long_description = fh.read()
setup(
name='x4c', # required
version='2024.9.22',
description='x4c: Xarray for CESM',
long_description=long_description,
long_description_content_type='text/markdown',
author='Feng Zhu',
author_email='fengzhu@ucar.edu',
url='https://github.com/NCAR/x4c',
packages=find_packages(),
include_package_data=True,
license='GPL-2.0',
zip_safe=False,
keywords='Xarray, CESM, Climate Data Analysis and Visualization',
classifiers=[
'Natural Language :: English',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
],
install_requires=[
'netCDF4',
'xarray',
'dask',
'nc-time-axis',
'colorama',
'tqdm',
'xhistogram',
],
)