-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
49 lines (44 loc) · 1.13 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "magcoordmap"
version = "0.0.1"
authors = [
{ name="L. Lamarche", email="[email protected]" },
]
description = "Add magnetic field coordinate grid to cartopy maps."
readme = "README.md"
license = { file = "LICENSE" }
keywords = ["magnetic coordinates", "cartopy"]
requires-python = ">=3.7"
dependencies = [
"numpy",
"matplotlib",
"cartopy",
"apexpy",
]
classifiers = [
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python",
"Operating System :: OS Independent",
]
[tool.setuptools.packages.find]
where = ["src"]
#[project.optional-dependencies]
#plots = ["matplotlib", "cartopy"]
#apex = ["apexpy"]
[project.urls]
"Homepage" = "https://github.com/ljlamarche/magcoordmap"
"Bug Tracker" = "https://github.com/ljlamarche/magcoordmap/issues"
[tool.pytest.ini_options]
pythonpath = [
"src"
]
addopts = [
"--import-mode=importlib",
]