forked from alvaro-gc95/RASCAL
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
52 lines (48 loc) · 1.46 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
from setuptools import setup, find_packages
import os
DISTNAME = "rascal-ties"
VERSION = "1.0.10"
DESCRIPTION = "Open-source tool for climatological time series reconstruction and extension"
PROJECT_URLS = {
"Documentation": "https://rascalv100.readthedocs.io/en/latest/",
"Source Code": "https://github.com/alvaro-gc95/RASCAL"
}
python_requires = "==3.10"
required_python_version = (3, 10)
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name=DISTNAME,
version=VERSION,
author="Alvaro Gonzalez-Cervera",
author_email="<[email protected]>",
description=DESCRIPTION,
readme="README.md",
packages=["rascal"],
install_requires=[
"numpy==1.26.4",
"pandas==2.2.1",
"dask==2024.4.1",
"xarray==2024.3.0",
"scipy==1.13.0",
"tqdm==4.65.0",
"scikit-learn==1.4.1.post1",
"seaborn==0.13.2",
"eofs==1.4.1",
"matplotlib>=3.5.5",
"sphinx-rtd-theme>=1.2.2",
"sphinx>=7.3.7",
"sphinx-copybutton>=0.5.2",
"cfgrib==0.9.12.0",
"netCDF4==1.7.0"
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=python_requires,
url="https://github.com/alvaro-gc95/RASCAL",
long_description=read('README.md'),
download_url="https://github.com/alvaro-gc95/RASCAL",
)