@@ -8,7 +8,7 @@ def read(file):
88
99setup (
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