-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
59 lines (57 loc) · 1.45 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
from setuptools import setup, find_packages
with open('README.md', 'r') as fh:
long_description = fh.read()
setup(
name='cfr', # required
version='2024.11.11',
description='cfr: a Python package for Climate Field Reconstruction',
long_description=long_description,
long_description_content_type='text/x-rst',
author='Feng Zhu, Julien Emile-Geay',
author_email='[email protected], [email protected]',
url='https://github.com/fzhu2e/cfr',
packages=find_packages(),
include_package_data=True,
license='BSD 3-Clause',
zip_safe=False,
keywords='climate field reconstruction',
scripts=['bin/cfr'],
classifiers=[
'Natural Language :: English',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
],
install_requires=[
'colorama',
'seaborn',
'pandas',
'tqdm',
'xarray',
'netCDF4',
'nc-time-axis',
'dask',
'statsmodels',
'eofs',
'plotly',
'pyresample',
],
extras_require={
'psm': [
'pathos',
'fbm',
'pyvsl',
'pybaywatch',
],
'ml': [
'scikit-learn',
'torch',
'torchvision',
],
'graphem': [
'cython',
'scikit-learn',
'cfr-graphem',
]
}
)