-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.cfg
64 lines (54 loc) · 1.36 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
[metadata]
name = argortqcpy
description = Real time QC automated tests for Argo data
long_description = file: README.rst
long_description_content_type = text/x-rst
url = https://github.com/euroargodev/argortqcpy
author = argortqcpy developers
author_email = argo@bodc.ac.uk
classifiers =
Development Status :: 1 - Planning
Programming Language :: Python
Programming Language :: Python :: 3 :: Only
Topic :: Scientific/Engineering
Operating System :: OS Independent
License :: OSI Approved :: MIT License
[options]
python_requires = >=3.6
packages = find:
setup_requires =
setuptools_scm
install_requires =
numpy
netCDF4
[options.extras_require]
test =
pytest
pytest-cov
pytest-mock
docs =
sphinx>=3.1.0
pydata-sphinx-theme
[pylint.MASTER]
extension-pkg-allow-list = netCDF4
[pylint.FORMAT]
max-line-length = 120
[pycodestyle]
max-line-length = 120
[pydocstyle]
convention = google
[coverage:paths]
# tox records coverage against the installed package
# so gitlab ci doesn't understand the paths.
# to solve this, we tell coverage to treat the installed
# paths (**/...) the same as the source paths (first line)
source =
argortqcpy
**/argortqcpy
[mypy]
disallow_untyped_defs = True
[mypy-netCDF4.*]
ignore_missing_imports = True
[mypy-numpy.*]
# cannot use numpy mypy plugin with Python 3.6
ignore_missing_imports = True