Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
m2r
numpy
numpydoc
m2r
PyForecastTools
pysat
35 changes: 15 additions & 20 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
# Full license can be found in License.md and AUTHORS.md
# -----------------------------------------------------------------------------

import os
import codecs
import os
from setuptools import setup, find_packages


Expand All @@ -16,12 +16,11 @@
with codecs.open(os.path.join(here, version_filename)) as version_file:
version = version_file.read().strip()

# change setup.py for readthedocs - commented for now
# on_rtd = os.environ.get('READTHEDOCS') == 'True'
install_requires = ['pysat', 'scipy', 'pandas', 'xarray', 'numpy']
# Define requirements
install_requires = ['pysat', 'scipy', 'pandas', 'xarray', 'numpy',
'PyForecastTools']

# Run setup

setup(name='pysatModels',
version=version,
url='github.com/pysat/pysatModels',
Expand All @@ -30,20 +29,16 @@
description='Model-data comparisons for the pysat ecosystem',
long_description=long_description,
packages=find_packages(),
classifiers=[
"Development Status :: 4 - Beta",
"Topic :: Scientific/Engineering :: Physics",
"Intended Audience :: Science/Research",
"License :: BSD",
"Natural Language :: English",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Operating System :: MacOS :: MacOS X",
],
classifiers=["Development Status :: 4 - Beta",
"Topic :: Scientific/Engineering :: Physics",
"Intended Audience :: Science/Research",
"License :: BSD",
"Natural Language :: English",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Operating System :: MacOS :: MacOS X",],
include_package_data=True,
zip_safe=False,
install_requires=install_requires,
)
install_requires=install_requires,)