-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.cfg
More file actions
49 lines (45 loc) · 956 Bytes
/
setup.cfg
File metadata and controls
49 lines (45 loc) · 956 Bytes
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
[metadata]
author_email = delepoulle.a@gmail.com
classifiers =
Development Status :: 3 - Alpha
Topic :: Scientific/Engineering :: Physics
Programming Language :: Python
description = SAD
long_description = file: README.md
long_description_content_type = text/x-md
name = py_eddy_tracker_sample_id
[options]
package_dir =
= .
packages = find:
python_requires = >=3.8
zip_safe = False
[options.package_data]
# Include files:
py_eddy_tracker_sample_id =
*/*.tar.xz
*/*.nc
[flake8]
exclude = docs,tests
max-line-length = 140
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=140
multi_line_output=3
skip=
build