-
Notifications
You must be signed in to change notification settings - Fork 15
/
pyproject.toml
81 lines (74 loc) · 1.49 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "tid"
version = "0.1.0"
description = "Ionospheric measurements from GPS to detect launches."
authors = [
{name = "Tyler Nighswander"},
{name = "Michael Nute"}
]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Natural Language :: English",
"Programming Language :: Python :: 3",
]
license = {file = "LICENSE"}
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"atomicwrites",
"awkward",
"cartopy",
"georinex",
"hatanaka",
"h5py",
"laika@git+https://github.com/commaai/laika#egg=laika",
"matplotlib",
"numpy",
"pyyaml",
"ruptures",
"scipy",
"sympy",
"xarray"
]
[project.urls]
repository = "https://github.com/tylerni7/missile-tid"
[tool.setuptools.packages.find]
exclude = ["docs", "tests"]
namespaces = false # true by default
[tool.mypy]
python_version = "3.8"
[[tool.mypy.overrides]]
module = [
"awkward",
"cartopy",
"cartopy.feature",
"georinex",
"hatanaka",
"h5py",
"laika",
"laika.*",
"matplotlib",
"pytest",
"ruptures",
"setuptools",
"scipy",
"scipy.signal",
"xarray",
]
ignore_missing_imports = true
[tool.coverage.run]
source = ["tid"]
[tool.coverage.report]
omit = [
"*/python?.?/*",
"*/site-packages/nose/*",
# ignore _version.py and versioneer.py
".*version.*",
"*_version.py"
]
exclude_lines = [
"if __name__ == '__main__':"
]