Skip to content

Commit

Permalink
Merge pull request #57 from ocefpaf/fix_packages
Browse files Browse the repository at this point in the history
use find_packages
  • Loading branch information
ocefpaf authored Jul 18, 2018
2 parents 5842c32 + 199c36a commit 3df5154
Showing 1 changed file with 2 additions and 12 deletions.
14 changes: 2 additions & 12 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import os

from setuptools import setup
from setuptools import find_packages, setup

import versioneer

Expand All @@ -22,21 +22,11 @@ def read(*parts):
hard = ['gsw', 'matplotlib', 'numpy', 'seawater']
soft = {'full': ['cartopy' 'iris', 'netcdf4', 'pandas', 'scipy']}

packages = [
'oceans',
'oceans/RPSstuff',
'oceans/colormaps',
'oceans/datasets',
'oceans/ocfis',
'oceans/plotting',
'oceans/sw_extras'
]

setup(
name='oceans',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
packages=packages,
packages=find_packages(),
package_data={'oceans': ['colormaps/cmap_data/*.dat']},
license=LICENSE,
long_description=long_description,
Expand Down

0 comments on commit 3df5154

Please sign in to comment.