Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MNT: move setup.py content into setup.cfg #453

Merged
merged 1 commit into from
Nov 19, 2021
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
85 changes: 73 additions & 12 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,3 +1,76 @@
[metadata]
name = siphon
description = A collection of Python utilities for interacting with the Unidata technology stack.
description_file = README.rst
author = Unidata Development Team
author_email = [email protected]
maintainer = Siphon Developers
maintainer_email = [email protected]
license = BSD 3-Clause
license_file = LICENSE
platform = any
keywords = meteorology, weather
classifiers =
Development Status :: 3 - Alpha
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Topic :: Scientific/Engineering
Intended Audience :: Science/Research
Operating System :: OS Independent
License :: OSI Approved :: BSD Licens
url = https://github.com/Unidata/siphon
project_urls =
Documentation = https://unidata.github.io/siphon/
Release Notes = https://github.com/Unidata/siphon/releases
Bug Tracker = https://github.com/Unidata/siphon/issues
Source Code = https://github.com/Unidata/siphon

[options]
package_dir =
= src
packages = find:
setup_requires = setuptools_scm
python_requires = >=3.6
install_requires =
beautifulsoup4>=4.6
numpy>=1.8
pandas
protobuf>=3.0.0a3
requests>=1.2

[options.packages.find]
where = src

[options.extras_require]
test =
pytest
pytest-flake8
pytest-runner
netCDF4>=1.1.0
flake8>3.2.0
flake8-builtins
flake8-comprehensions
flake8-copyright
flake8-docstrings
flake8-import-order
flake8-mutable
flake8-pep3101
flake8-print
flake8-quotes
flake8-rst-docstrings
pep8-naming
vcrpy~=1.5,!=1.7.0,!=1.7.1,!=1.7.2,!=1.7.3
xarray>=0.10.2
doc = sphinx>=1.3,!=1.6.4; sphinx-gallery; doc8; m2r
# SciPy needed for cartopy; we don't use cartopy[plotting] because
# that will pull in GDAL.
examples = matplotlib>=1.3; cartopy>=0.13.1; scipy; metpy
netcdf = netCDF4>=1.1.0
dev = ipython[all]>=3.1

[flake8]
max-line-length = 95
application-import-names = siphon
Expand Down Expand Up @@ -26,18 +99,6 @@ norecursedirs = build docs
ignore-path = docs/build,docs/api
max-line-length = 95

[metadata]
description-file = README.rst

[options]
package_dir =
= src
packages = find:
setup_requires = setuptools_scm

[options.packages.find]
where = src

[bdist_wheel]
# This flag says that the code is written to work on both Python 2 and 3.
universal=1
Expand Down
50 changes: 2 additions & 48 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,9 @@
# Distributed under the terms of the BSD 3-Clause License.
# SPDX-License-Identifier: BSD-3-Clause
"""Setup script for installing Siphon."""

from __future__ import print_function

import sys

from setuptools import find_packages, setup
from setuptools import setup
akrherz marked this conversation as resolved.
Show resolved Hide resolved


if sys.version_info[0] < 3:
Expand All @@ -23,47 +20,4 @@
print(error) # noqa: T001
sys.exit(1)

# Need to conditionally add enum support for older Python
dependencies = ['numpy>=1.8', 'protobuf>=3.0.0a3', 'requests>=1.2', 'beautifulsoup4>=4.6',
'pandas']

setup(
name='siphon',
use_scm_version={'version_scheme': 'post-release', 'local_scheme': 'dirty-tag'},
packages=find_packages(),
author='Unidata Development Team',
author_email='[email protected]',
license='BSD 3-Clause',
url='https://github.com/Unidata/siphon',
description=('A collection of Python utilities for interacting with the '
'Unidata technology stack.'),
keywords='meteorology weather',
classifiers=['Development Status :: 3 - Alpha',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Scientific/Engineering',
'Intended Audience :: Science/Research',
'Operating System :: OS Independent',
'License :: OSI Approved :: BSD License'],

python_requires='>=3.7',
install_requires=dependencies,
extras_require={
'netcdf': 'netCDF4>=1.1.0',
'dev': 'ipython[all]>=3.1',
'test': ['pytest', 'pytest-flake8', 'pytest-runner',
'netCDF4>=1.1.0',
'flake8>3.2.0', 'flake8-builtins', 'flake8-comprehensions',
'flake8-copyright', 'flake8-docstrings', 'flake8-import-order',
'flake8-mutable', 'flake8-pep3101', 'flake8-print', 'flake8-quotes',
'flake8-rst-docstrings', 'pep8-naming',
'vcrpy~=1.5,!=1.7.0,!=1.7.1,!=1.7.2,!=1.7.3', 'xarray>=0.10.2'],
'doc': ['sphinx>=1.3,!=1.6.4', 'sphinx-gallery', 'doc8', 'm2r'],
# SciPy needed for cartopy; we don't use cartopy[plotting] because
# that will pull in GDAL.
'examples': ['matplotlib>=1.3', 'cartopy>=0.13.1', 'scipy', 'metpy']
},
# download_url='https://github.com/Unidata/siphon/archive/v{}.tar.gz'.format(ver),
)
setup(use_scm_version={'version_scheme': 'post-release'})