forked from SECOORA/GUTILS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
90 lines (83 loc) · 2.35 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
[metadata]
name = gutils
version = attr: gutils.__version__
description = A set of Python utilities for reading, merging, and post processing Teledyne Webb Slocum Glider data
long_description = file: README.md
long_description_content_type = text/markdown
license = MIT License
license_file = LICENSE
author = Kyle Wilcox
author_email = [email protected]
url = https://github.com/SECOORA/GUTILS
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
Intended Audience :: Science/Research
Programming Language :: Python
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Topic :: Scientific/Engineering
Topic :: Scientific/Engineering :: GIS
Topic :: Scientific/Engineering :: Information Analysis
Topic :: Scientific/Engineering :: Mathematics
Topic :: Scientific/Engineering :: Physics
License :: OSI Approved :: MIT License
[options]
packages = find:
include_package_data = True
install_requires =
cc-plugin-glider>=1.0.6,<2.0.0
compliance-checker>=4.1.1
gsw
netCDF4
pandas>=1.2,<2.0
pocean-core>=3.0.0,<4.0
pyinotify
scipy
whichcraft
dbdreader>=0.4.8,<1.0
tests_require =
pytest
python_requires = >=3.7,<4
[options.package_data]
gutils = gutils/slocum/bin/*
[options.packages.find]
exclude =
tests*
docs*
[options.entry_points]
console_scripts =
gutils_create_nc = gutils.nc:main_create
gutils_check_nc = gutils.nc:main_check
gutils_binary_to_ascii_watch = gutils.watch.binary:main_to_ascii
gutils_ascii_to_netcdf_watch = gutils.watch.ascii:main_to_netcdf
gutils_netcdf_to_ftp_watch = gutils.watch.netcdf:main_to_ftp
gutils_netcdf_to_erddap_watch = gutils.watch.netcdf:main_to_erddap
[tool:pytest]
addopts = -s -rxs -v
markers =
long: Tests that take a long time to run
watch: Tests that use inotify to watch for files
[flake8]
max-line-length = 100
ignore = E265 E501 E221 E203 E201 E124 E202 E241 E251 W293 W291
exclude =
docs/
.git/
__pycache__
dist
gutils/slocum/echotools/*.py
[tool:isort]
line_length=100
indent=' '
balanced_wrapping=1
multi_line_output=3
default_section=FIRSTPARTY
use_parentheses=1
reverse_relative=1
known_standard_library=simplejson
length_sort=1
combine_star=1
order_by_type=0