diff --git a/setup.cfg b/setup.cfg index 8966769..60e0ae2 100644 --- a/setup.cfg +++ b/setup.cfg @@ -19,23 +19,16 @@ classifiers = Programming Language :: Python :: 3.10 Operating System :: POSIX :: Linux keywords = - vector-basis - geomagnetic-field - magnetic-fields - field-line-tracing - meridional - zonal - field-aligned - satellite - electric-field-mapping - ion-drift-mapping - multipole + CDF + NASA + pysat + pandas license_file = LICENSE [options] python_requires = >= 3.5 setup_requires = setuptools >= 38.6; pip >= 10 -packages = find: +packages = pysatCDF include_package_data = True zip_safe = False install_requires = numpy diff --git a/setup.py b/setup.py index 5c5ca92..39dcab0 100644 --- a/setup.py +++ b/setup.py @@ -202,49 +202,4 @@ def run(self): # call setup # -------------------------------------------------------------------------- -numpy.distutils.core.setup(ext_modules=[ext1]) -# numpy.distutils.core.setup( -# name='pysatCDF', -# version='0.3.1', -# packages=['pysatCDF'], -# cmdclass=cmdclass, -# ext_modules=[ext1, ], -# description='Simple NASA Common Data Format (CDF) File reader.', -# long_description=('pysatCDF is a reader for CDF files and provides ' -# 'additional support for exporting to pysat data ' -# 'formats (not required). ' -# 'The NASA CDF library is included.'), -# url='http://github.com/rstoneback/pysatCDF', -# # Author details -# author='Russell Stoneback', -# author_email='rstoneba@utdallas.edu', -# # data_files = [('', ['cdf36_1-dist/CDF_copyright.txt'])], -# -# # Choose your license -# license='BSD', -# # See https://pypi.python.org/pypi?%3Aaction=list_classifiers -# classifiers=[ -# # How mature is this project? Common values are -# # 3 - Alpha -# # 4 - Beta -# # 5 - Production/Stable -# 'Development Status :: 4 - Beta', -# -# # Indicate who your project is intended for -# 'Intended Audience :: Science/Research', -# 'Topic :: Scientific/Engineering :: Astronomy', -# 'Topic :: Scientific/Engineering :: Physics', -# 'Topic :: Scientific/Engineering :: Atmospheric Science', -# -# # Pick your license as you wish (should match "license" above) -# 'License :: OSI Approved :: BSD License', -# -# # Specify the Python versions you support here. In particular, ensure -# # that you indicate whether you support Python 2, Python 3 or both. -# 'Programming Language :: Python :: 2.7', -# 'Programming Language :: Python :: 3.4', -# 'Programming Language :: Python :: 3.5', -# 'Programming Language :: Python :: 3.6', -# ], -# install_requires=['numpy', 'pandas'], -# ) +numpy.distutils.core.setup(ext_modules=[ext1], cmdclass=cmdclass)