https://github.com/RadioAstronomySoftwareGroup/pyuvdata
Revision a214dbccb19062d362004dfe61535ab0cb0f2f8b authored by Bryna Hazelton on 12 December 2019, 21:28:14 UTC, committed by Bryna Hazelton on 20 December 2019, 00:09:47 UTC
1 parent 7772bc6
Raw File
Tip revision: a214dbccb19062d362004dfe61535ab0cb0f2f8b authored by Bryna Hazelton on 12 December 2019, 21:28:14 UTC
deprecate `phase_center` and `phase_data` keywords in read_mwa_corr_fits
Tip revision: a214dbc
setup.cfg
[metadata]
description-file = README.md

[aliases]
test=pytest

[tool:pytest]
addopts = --ignore=scripts

[flake8]
ignore = E501, W503
# per-file-ignores =
#     pyuvdata/tests/*.py: D
#     docs/*.py: D
docstring-convention = numpy
select = B,C,E,W,T4,B9,F
# should add `D` to the above list when we've fully
# moved to numpy style docstrings.
# List of other checks to consider adding:
# move to a max line length rather than ignoring E501
# max-line-length = 88
# it's recommended to have max-complexity ~ 18
# max-complexity = 18
# flake8-quotes
# flake8-comprehensions
# flake8-black
# flake8-builtins
# flake8-eradicate
# pep8-naming
# flake8-isort
# flake8-rst-docstrings
# flake8-rst
# darglint
# flake8-copyright
# flake8-ownership
back to top