-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Helio Almeida (CTW)
authored and
Helio Almeida (CTW)
committed
Sep 9, 2020
1 parent
b2fa21a
commit fd9f19c
Showing
5 changed files
with
16 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
from DYN import * | ||
from EOF import * | ||
from OA import * | ||
from .dyn import zeta, vmode_amp, psi2uv, eqmodes, vmodes | ||
from .eof import my_eof_interp, eoft | ||
from .oa import scaloa, vectoa | ||
|
||
__version__ = '0.0.7' |
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,25 @@ | ||
from setuptools import setup | ||
|
||
def read(file): | ||
return open(file, 'r').read() | ||
|
||
with open('README.md','r') as fh: | ||
long_description = fh.read() | ||
LONG_DESCRIPTION = read('README.md') | ||
LICENSE = read('LICENSE.txt') | ||
|
||
setup( | ||
name='OceanLab', | ||
version='0.0.5', | ||
packages = ['OceanLab'], | ||
version='0.0.7', | ||
packages=['OceanLab'], | ||
include_package_data=True, | ||
description='Python functions for Physical Oceanography', | ||
long_description=long_description, | ||
long_description=LONG_DESCRIPTION, | ||
long_description_content_type='text/markdown', | ||
download_url = 'https://pypi.python.org/pypi/OceanLab', | ||
url='https://github.com/iuryt/OceanLab', | ||
author='Iury T. Simoes-Sousa', | ||
author_email='[email protected]', | ||
license='MIT', | ||
license=LICENSE, | ||
py_modules=['OA','EOF','DYN'], | ||
package_dir={'': 'src/'}, | ||
classifiers=[ | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.6", | ||
|
@@ -28,4 +31,4 @@ | |
'seawater ~= 3.3', | ||
'numpy ~= 1.18', | ||
], | ||
) | ||
) |