-
Notifications
You must be signed in to change notification settings - Fork 28
/
setup.cfg
96 lines (83 loc) · 2.12 KB
/
setup.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
[flake8]
ignore = E122, E123, E126, E127, E128, E731, E722, E203, E741, W503
max-line-length = 88
max-complexity = 22
exclude = build,tests,.git,benchmarks,.asv, glidertools/_version.py
per-file-ignores =
glidertools/flo_functions.py: F841, E501
__init__.py: F401, F403
[isort]
multi_line_output=3
include_trailing_comma=True
force_grid_wrap=0
use_parentheses=True
line_length=88
[tool:pytest]
testpaths=tests/
addopts= --cov --cov-fail-under=20
[doc8]
# https://pypi.org/project/doc8/
ignore-path = docs/_build
max-line-length = 100
sphinx = True
[sdist]
formats = gztar
[check-manifest]
ignore =
*.yml
*.yaml
.coveragerc
docs
docs/*
*.enc
notebooks
notebooks/*
tests
tests/*
[metadata]
name = glidertools
description = ("A toolkit for processing Seaglider base station NetCDF files: "
"despiking, smoothing, outlier detection, backscatter, fluorescence "
"quenching, calibration, gridding, interpolation. Documentation "
"at https://glidertools.readthedocs.io")
author = Luke Gregor
url = https://github.com/GliderToolsCommunity/GliderTools
long_description = file: README.rst
long_description_content_type = text/x-rst
license = GNUv3
license_file = LICENSE
## These need to be filled in by the author!
# For details see: https://pypi.org/classifiers/
classifiers =
Development Status :: 3 - Alpha
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Intended Audience :: Science/Research
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
## Add your email here
author_email = "[email protected]"
### make sure to fill in your dependencies!
[options]
install_requires =
numexpr
netcdf4
pandas
xarray
numpy
scikit-learn
scipy
tqdm
matplotlib
gsw
setup_requires=
setuptools_scm
python_requires = >=3.8
################ Up until here
zip_safe = False
packages = find: