-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.cfg
executable file
·87 lines (82 loc) · 1.74 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
[metadata]
name = ctdcal
author = "Joseph Gum, Andrew Barna, Michael Kovatch, Aaron Mau, Allen Smith"
author_email = [email protected]
home_page = https://github.com/SIO-ODF/ctdcal
description = CTD and bottle data processing package from UCSD ODF
long_description = file: README.md
long_description_content_type = text/markdown
license_file = LICENSE.md
platform = any
classifiers =
Development Status :: 4 - Beta
Environment :: Console
Intended Audience :: Science/Research
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3 :: Only
# Programming Language :: Python :: 3.8
# Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Topic :: Scientific/Engineering
keywords =
oceanography
seawater
TEOS-10
ctd
calibration
[options]
python_requires = >=3.8
packages =
find:
setup_requires = setuptools_scm
include_package_data = True
install_requires =
click==8.0.1
gsw
matplotlib
munch
numpy < 2.0.0
pandas
PyYAML
requests
scipy
[options.extras_require]
dev =
black
flake8
isort
pre-commit
pytest
docs =
Sphinx==7.3.3
jupyter==1.0.0
furo==2024.1.29
nbsphinx==0.9.4
jupytext
tests =
%(dev)s
bokeh
mypy
pytest-cov
complete =
%(tests)s
%(docs)s
[options.entry_points]
console_scripts =
ctdcal=ctdcal.__main__:cli
[flake8]
max-line-length = 88
max-complexity = 18
select = B,C,E,F,W,T4,B9
ignore =
E203,
E266,
# workaround for jupytext pypercent cell comments
E302,
# line too long, handled with black
E501,
W503,
F403