forked from klaundal/lompe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
57 lines (52 loc) · 1.2 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
[build-system]
requires = ["setuptools", "setuptools_scm[toml]"]
build-backend = "setuptools.build_meta"
[project]
name = "lompe"
dynamic = ["version"]
# Note: To install, must specify one of [local] or [from_github]
dependencies = [
"apexpy",
"matplotlib",
"numpy",
"pandas",
"ppigrf",
"scipy",
"xarray",
]
[project.optional-dependencies]
# For the case where you have already installed these locally
# (e.g. with a --editable install)
local = [
"dipole",
"polplot",
"secsy",
]
# To use the online versions instead
deps-from-github = [
"dipole @ git+https://github.com/klaundal/dipole.git@main#egg=dipole",
"polplot @ git+https://github.com/klaundal/polplot.git@main#egg=polplot",
"secsy @ git+https://github.com/klaundal/secsy.git@main#egg=secsy",
]
extras = [
"astropy",
"cdflib",
# "madgrigalweb", # don't know why this fails
"netCDF4",
"pyAMPS",
"pydarn",
]
dev = [
"pytest",
]
[tool.setuptools.packages.find]
where = ["."]
include = ["lompe"]
[tool.setuptools_scm]
[tool.pytest.ini_options]
minversion = "6.0"
addopts = ["-ra", "--showlocals", "--strict-markers", "--strict-config"]
xfail_strict = true
testpaths = [
"tests",
]