Skip to content

Commit

Permalink
further updates to setup and relative pathing
Browse files Browse the repository at this point in the history
  • Loading branch information
drsteve committed Jun 27, 2018
1 parent 204ec1e commit 6e968d4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env python

from setuptools import setup
from setuptools import setup, find_packages

setup(name='PyForecastTools',
version='1.0',
Expand All @@ -10,6 +10,7 @@
license='BSD License',
url='https://drsteve.github.io/PyForecastTools',
install_requires=['numpy'],
packages=find_packages(exclude=['tests']),
classifiers=['Development Status :: 4 - Beta',
'License :: OSI Approved :: BSD License',
'Intended Audience :: Science/Research',
Expand All @@ -22,4 +23,5 @@
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
],
test_suite='test_verify.py'
)
4 changes: 2 additions & 2 deletions verify/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@

try:
from spacepy import datamodel as dm
except ImportError:
import datamodel as dm
except:
from . import datamodel as dm


#======= Performance metrics =======#
Expand Down

0 comments on commit 6e968d4

Please sign in to comment.