-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathsetup.cfg
More file actions
103 lines (95 loc) · 2.07 KB
/
Copy pathsetup.cfg
File metadata and controls
103 lines (95 loc) · 2.07 KB
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
91
92
93
94
95
96
97
98
99
100
101
102
103
[metadata]
name = gemini3d
version = 0.5.6
author = Michael Hirsch, Ph.D.
author_email = scivision@users.noreply.github.com
description = 3-D ionospheric model plotting suite
url = https://github.com/gemini3d/gemini
keywords =
mesosphere
stratosphere
thermosphere
classifiers =
Development Status :: 4 - Beta
Environment :: Console
Intended Audience :: Science/Research
Operating System :: OS Independent
Programming Language :: Fortran
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Topic :: Scientific/Engineering :: Atmospheric Science
license_files =
LICENSE.txt
long_description = file: README.md
long_description_content_type = text/markdown
[options]
packages=find:
python_requires = >= 3.6
zip_safe = False
scripts =
scripts/compare_all.py
scripts/plotall.py
scripts/model_setup.py
job.py
install_requires =
numpy >= 1.16.0
scipy
h5py
package_dir=
=src
[options.packages.find]
where=src
[options.extras_require]
tests =
pytest >= 3.9
lint =
flake8
flake8-bugbear
flake8-builtins
flake8-blind-except
mypy
plots =
mayavi
matplotlib >= 3.1
[flake8]
max-line-length = 100
exclude = .git,__pycache__,.eggs/,doc/,docs/,build/,dist/,archive/,subprojects/
per-file-ignores =
__init__.py:F401
ignore =
W503
E203
[mypy]
ignore_missing_imports = True
strict_optional = False
allow_redefinition = True
show_error_context = False
show_column_numbers = True
[tool:pytest]
rootdir = src/gemini3d
minversion = 3.9
addopts = -ra -v
norecursedirs = subprojects _deps archive .* build dist _darcs {arch} *.egg venv
[coverage:run]
cover_pylib = false
omit =
/home/travis/virtualenv/*
*/site-packages/*
*/bin/*
[coverage:report]
exclude_lines =
pragma: no cover
def __repr__
except RuntimeError
except NotImplementedError
except ImportError
except FileNotFoundError
except CalledProcessError
raise AssertionError
raise NotImplementedError
logging.warning
logging.error
logging.critical
if __name__ == .__main__.: