forked from GeoOcean/BlueMath_tk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
48 lines (46 loc) · 1.56 KB
/
setup.py
File metadata and controls
48 lines (46 loc) · 1.56 KB
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
# --------------------------- ONLY FOR DEVELOPMENT MODE ---------------------------
# This setup.py file is used to configure the setup for the BlueMath_tk project.
# It specifies metadata about the project and its dependencies.
# This file is ONLY useful for development mode, where you can install
# the project in an editable state using the command `pip install -e .`.
# This allows you to make changes to the code and have them immediately reflected
# without needing to reinstall the package.
# To install the package, change name of pyproject.toml to pyproject.toml.bak
from setuptools import find_packages, setup
setup(
name="BlueMath_tk",
author="GeoOcean Group",
author_email="bluemath@unican.es",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/GeoOcean/BlueMath_tk",
packages=find_packages(), # Automatically find packages in the directory
include_package_data=True,
install_requires=[
"numpy",
"pandas",
"xarray",
"netcdf4",
"dask",
"distributed",
"zarr",
"scipy",
"scikit-learn",
"matplotlib",
"plotly",
"cartopy",
"cdsapi",
"jinja2",
"requests",
"aiohttp",
"minisom",
"statsmodels",
"regionmask",
"wavespectra",
"cmocean",
"hydromt-sfincs",
"siphon",
],
classifiers=["Programming Language :: Python :: 3.11"],
python_requires=">=3.11", # Specify the Python version required
)