-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
103 lines (97 loc) · 2.68 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
[build-system]
requires = ["oldest-supported-numpy", "setuptools >= 38.6", "pip >= 10"]
build-backend = "setuptools.build_meta"
[project]
name = "ocbpy"
version = "0.4.0"
license = {file = "LICENSE"}
description = 'Location relative to open/closed field line boundary'
maintainers = [
{name = "Angeline G. Burrell", email = "[email protected]"},
]
requires-python = ">=3.9"
dependencies = [
"aacgmv2",
"numpy",
]
readme = "README.md"
keywords = [
"coordinates",
"field-line boundary",
"auroral oval",
"polar cap",
"pysat",
"ionosphere",
"atmosphere",
"thermosphere",
"magnetosphere",
"heliosphere",
"observations",
"models",
"space",
"satellites",
"analysis",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Atmospheric Science",
"Topic :: Scientific/Engineering :: Physics",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
'Operating System :: Unix',
'Operating System :: POSIX',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
]
[project.optional-dependencies]
pysat_instruments = [ "pysat>=3.0.1" ]
dmsp_ssj = [
"ssj_auroral_boundaries",
"zenodo_get",
]
doc = [
"numpydoc",
"pyproject_parser",
"pysat>=3.0.1",
"sphinx>=1.3",
"sphinx-rtd-theme",
]
test = [
"coverage[toml]",
"flake8",
"packaging",
"requests",
]
[project.urls]
source = "https://github.com/aburrell/ocbpy"
documentation = "https://ocbpy.readthedocs.io/en/latest/"
tracker = "https://github.com/aburrell/ocbpy/issues"
download = "https://github.com/aburrell/ocbpy/releases"
[tool.coverage.run]
relative_files = true
include = ["*/ocbpy/*",
"*/ocbpy/tests/*"]
[tool.coverage.paths]
ocb_paths = ["ocbpy/",
"*/lib/*/site-packages/ocbpy"]
[tool.coverage.report]
omit = ["*/lib/*/site-packages/*.py",
"*/lib/*/site-packages/a*/*",
"*/lib/*/site-packages/c*/*",
"*/lib/*/site-packages/d*/*",
"*/lib/*/site-packages/g*/*",
"*/lib/*/site-packages/i*/*",
"*/lib/*/site-packages/m*/*",
"*/lib/*/site-packages/n*/*",
"*/lib/*/site-packages/p*/*",
"*/lib/*/site-packages/r*/*",
"*/lib/*/site-packages/s*/*",
"*/lib/*/site-packages/u*/*"]