Skip to content

Commit

Permalink
Merge pull request #171 from zmoon/extras
Browse files Browse the repository at this point in the history
Fix `requires` in `setup.cfg`
  • Loading branch information
Takaya Uchida authored Dec 7, 2021
2 parents 2829954 + b3bf03c commit 672ddd1
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ classifiers =
License :: OSI Approved :: MIT License
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Expand All @@ -34,26 +35,25 @@ install_requires =
numpy
pandas
scipy
setuptools
python_requires = >=3.6
setup_requires =
setuptools_scm
pytest-runner
extra_requires =
cftime
numpy_groupies

[bdist_wheel]
universal = 1

[aliases]
test=pytest
test = pytest

[options.extras_require]
io =
cftime
agg =
numpy_groupies
test =
pytest >= 6.2.2
pytest-cov
all =
%(io)s
%(agg)s
%(test)s

[flake8]
Expand All @@ -70,5 +70,5 @@ ignore =
W503

[isort]
known_first_party=xrft
known_third_party=dask,numpy,pandas,pytest,pytest_lazyfixture,setuptools,sphinx_book_theme,xarray,zarr
known_first_party = xrft
known_third_party = xarray,dask,numpy,pandas,scipy,cftime,numpy_groupies,pytest,setuptools

0 comments on commit 672ddd1

Please sign in to comment.