-
Notifications
You must be signed in to change notification settings - Fork 25
/
pyproject.toml
78 lines (74 loc) · 2.14 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
[build-system]
build-backend = 'mesonpy'
requires = [
"wheel",
"meson-python>=0.12.0",
"setuptools<60.0", # Do not increase, 60.0 enables vendored distutils
"Cython>=0.29.21",
"python-dev-tools",
"oldest-supported-numpy; python_version>'3.9'",
"numpy; python_version<='3.9'"
]
[project]
name = "apexpy"
license = {file = "LICENSE"}
description = "A Python wrapper for Apex coordinates"
maintainers = [
{name = "Angeline Burrell", email = "angeline.g.burrell.civ@us.navy.mil"},
]
requires-python = ">=3.9,<3.12"
dependencies = [
# TODO: update to "pin-compatible" once possible, see
# https://github.com/FFY00/meson-python/issues/29
"numpy>=1.19.5,<2",
]
readme = "README.rst"
keywords = [
"apex",
"modified apex",
"quasi-dipole",
"quasi dipole",
"coordinates",
"magnetic coordinates",
"mlt",
"magnetic local time",
"conversion",
"converting",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Fortran",
"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 :: Implementation :: CPython",
"Topic :: Software Development :: Libraries",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Utilities",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS",
]
dynamic = ['version']
[tool.project.scripts]
apexpy = {reference = 'apexpy.__main__:main', type = 'console'}
[project.optional-dependencies]
test = [
"coverage",
"flake8",
"pytest",
"pytest-cov",
"pytest-xdist"
]
doc = ["sphinx>=1.3", "sphinx-rtd-theme"]
[project.urls]
source = "https://github.com/aburrell/apexpy"
documentation = "https://apexpy.readthedocs.io/en/latest/"
tracker = "https://github.com/aburrell/apexpy/issues"
download = "https://github.com/aburrell/apexpy/releases"