-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.cfg
68 lines (63 loc) · 1.42 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
[metadata]
author = CNES/CLS
author_email = fbriol@gmail.com
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Science/Research
Natural Language :: English
Operating System :: MacOS
Operating System :: Microsoft :: Windows
Operating System :: POSIX
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Topic :: Scientific/Engineering :: Physics
description = Locate SWOT half-orbits
keywords = SWOT
license = BSD License
license_files = LICENSE
long_description = file: README.rst
long_description_content_type = text/x-rst
name = search_swot
url = https://github.com/CNES/search_swot
version = attr: search_swot.version.__version__
[options]
include_package_data = True
install_requires =
pandas
pyinterp
ipyleaflet
ipywidgets
package_dir =
= .
packages = find:
python_requires = >=3.8
zip_safe = False
[options.package_data]
* = *.txt *.nc
[flake8]
exclude = docs,tests
max-line-length = 80
ignore =
# Assigning lambda expression
E731
# Ambiguous variable names
E741
# line break before binary operator
W503
# line break after binary operator
W504
# whitespace before :
E203
[isort]
combine_as_imports=True
force_grid_wrap=0
force_sort_within_sections=True
force_to_top=typing
include_trailing_comma=True
line_length=80
multi_line_output=3
skip=
build
docs/source/conf.py
[mypy]
ignore_missing_imports=True