Skip to content

Commit 0d0de71

Browse files
committed
updated requirements for current version
1 parent dcfc780 commit 0d0de71

File tree

2 files changed

+48
-3
lines changed

2 files changed

+48
-3
lines changed

requirements.txt

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,6 @@
11
numpy >= 1.8.2
2-
seawater >= 3.3.1
2+
seawater >= 3.3.1
3+
scipy >= 1.6.3
4+
xarray >= 0.18.2
5+
dask >= 2021.06.0
6+
dask[distributed] >= 2021.06.0

setup.py

Lines changed: 43 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ def read(file):
88

99
setup(
1010
name='OceanLab',
11-
version='0.0.7',
11+
version='0.1.0',
1212
packages=['OceanLab'],
1313
include_package_data=True,
1414
description='Python functions for Physical Oceanography',
@@ -30,5 +30,46 @@ def read(file):
3030
install_requires = [
3131
'seawater ~= 3.3',
3232
'numpy ~= 1.18',
33+
'scipy ~= 1.6',
34+
'xarray ~= 0.18',
35+
'dask ~= 2021.06',
36+
'dask[distributed] ~= 2021.06'
3337
],
34-
)
38+
)
39+
40+
# OLDER VERSION (Before MeanEddy branch Jun 8 2021)
41+
42+
# from setuptools import setup
43+
44+
# def read(file):
45+
# return open(file, 'r').read()
46+
47+
# LONG_DESCRIPTION = read('README.md')
48+
# LICENSE = read('LICENSE.txt')
49+
50+
# setup(
51+
# name='OceanLab',
52+
# version='0.0.7',
53+
# packages=['OceanLab'],
54+
# include_package_data=True,
55+
# description='Python functions for Physical Oceanography',
56+
# long_description=LONG_DESCRIPTION,
57+
# long_description_content_type='text/markdown',
58+
# download_url = 'https://pypi.python.org/pypi/OceanLab',
59+
# url='https://github.com/iuryt/OceanLab',
60+
# author='Iury T. Simoes-Sousa',
61+
# author_email='[email protected]',
62+
# license=LICENSE,
63+
# py_modules=['OA','EOF','DYN'],
64+
# classifiers=[
65+
# "Programming Language :: Python :: 3",
66+
# "Programming Language :: Python :: 3.6",
67+
# "Programming Language :: Python :: 3.7",
68+
# "License :: OSI Approved :: MIT License",
69+
# "Operating System :: OS Independent",
70+
# ],
71+
# install_requires = [
72+
# 'seawater ~= 3.3',
73+
# 'numpy ~= 1.18',
74+
# ],
75+
# )

0 commit comments

Comments
 (0)