-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpyproject.toml
121 lines (112 loc) · 2.51 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
[build-system]
requires = [
"wheel",
"setuptools",
"oldest-supported-numpy",
]
[project]
name = "aacgmv2"
version = "2.7.0"
license = {file = "LICENSE"}
description = "A Python wrapper for AACGM-v2 magnetic coordinates"
maintainers = [
{name = "Angeline G. Burrell", email = "[email protected]"},
]
requires-python = ">=3.9"
dependencies = [
"numpy",
]
readme = "README.rst"
keywords = [
'aacgm',
'aacgm-v2',
'aacgmv2',
'magnetic coordinates',
'altitude adjusted corrected geomagnetic coordinates',
'mlt',
'magnetic local time',
'conversion',
'converting',
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
'Operating System :: Unix',
'Operating System :: POSIX',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
"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",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Libraries",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Utilities",
]
[project.scripts]
aacgmv2 = 'aacgmv2.__main__:main'
[project.optional-dependencies]
test = [
"build",
"flake8",
"flake8-docstrings",
"pytest",
"pytest-cov"
]
doc = [
"sphinx>=1.3",
"sphinxcontrib-napoleon",
"numpydoc",
"pyproject_parser",
"sphinx-rtd-theme>=1.2.2"
]
[project.urls]
source = "https://github.com/aburrell/aacgmv2"
documentation = "https://aacgmv2.readthedocs.io/en/latest/"
tracker = "https://github.com/aburrell/aacgmv2/issues"
download = "https://github.com/aburrell/aacgmv2/releases"
[tool.coverage.paths]
source = [
"aacgmv2",
"c_aacgmv2"
]
[tool.coverage.run]
branch = true
relative_files = true
include = [
"*/aacgmv2/*",
"*/aacgmv2/tests/*"
]
source = [
"aacgmv2",
"c_aacgmv2"
]
parallel = true
[tool.coverage.report]
show_missing = true
precision = 2
[tool.pytest]
norecursedirs = [
".git",
".tox",
".env",
"dist",
"build",
"south_migrations",
"migrations"
]
python_files = [
"test_*.py",
"*_test.py",
"tests.py"
]
[tool.isort]
line_length = 80
known_first_party = "aacgmv2"
forced_separate = "test_aacgmv2"
length_sort = 1
multi_line_output = 0