-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
42 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,3 +5,4 @@ pre-commit | |
pytest | ||
xarray>=2023.2.0 | ||
pytest-cov | ||
setuptools_scm |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,39 @@ | ||
[black] | ||
line-length = 100 | ||
[metadata] | ||
name = echoregions | ||
maintainer = Caesar Tuguinay | ||
maintainer_email = [email protected] | ||
description = Parsers and functions for working with EVR and EVL files | ||
long_description = file: README.md | ||
long_description_content_type = text/markdown | ||
url = https://github.com/OSOceanAcoustics/echoregions | ||
license = Apache License, Version 2.0 | ||
classifiers = | ||
Development Status :: 4 - Beta | ||
Environment :: Console | ||
Intended Audience :: Science/Research | ||
License :: OSI Approved :: Apache Software License | ||
Operating System :: OS Independent | ||
Programming Language :: Python | ||
Programming Language :: Python :: 3 :: Only | ||
Programming Language :: Python :: 3.9 | ||
Programming Language :: Python :: 3.10 | ||
Programming Language :: Python :: 3.11 | ||
Topic :: Scientific/Engineering | ||
author = Caesar Tuguinay | ||
author_email = [email protected] | ||
platforms = OS Independent | ||
|
||
[flake8] | ||
max-line-length = 100 | ||
output-file = flake8_log.txt | ||
tee = True | ||
ignore = E722,E203,W503,T001 | ||
[options] | ||
packages = find: | ||
platforms = any | ||
py_modules = | ||
_echoregions_version | ||
include_package_data = True | ||
python_requires = >=3.9 | ||
setup_requires = | ||
setuptools_scm | ||
|
||
[isort] | ||
multi_line_output = 3 | ||
include_trailing_comma = True | ||
force_grid_wrap = 0 | ||
combine_as_imports = True | ||
line_length = 100 | ||
[options.extras_require] | ||
plot = | ||
matplotlib>=3.7 | ||
cmocean |