Skip to content

Commit

Permalink
STY: setup cleanup and correction
Browse files Browse the repository at this point in the history
  • Loading branch information
rstoneback committed Feb 18, 2022
1 parent 45366ed commit f06804f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 58 deletions.
17 changes: 5 additions & 12 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
47 changes: 1 addition & 46 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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='[email protected]',
# # 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)

0 comments on commit f06804f

Please sign in to comment.