Skip to content

Commit

Permalink
Fix init
Browse files Browse the repository at this point in the history
  • Loading branch information
Helio Almeida (CTW) authored and Helio Almeida (CTW) committed Sep 9, 2020
1 parent b2fa21a commit fd9f19c
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 11 deletions.
8 changes: 5 additions & 3 deletions OceanLab/__init.py__
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.
19 changes: 11 additions & 8 deletions setup.py
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",
Expand All @@ -28,4 +31,4 @@
'seawater ~= 3.3',
'numpy ~= 1.18',
],
)
)

0 comments on commit fd9f19c

Please sign in to comment.