-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
62 lines (57 loc) · 1.65 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
[project]
name = "EMToolKit"
version = "0.1.17"
description = "This package provides an interface to the EMToolKit through PyPi"
authors = [
{ name = "J. Plowman", email = "[email protected]" },
{ name = "C. Gilly", email = "[email protected]" }
]
dependencies = [
"astropy>=6.0.1",
"scipy>=1.13.1",
"ipympl>=0.9.4",
"ndcube>=2.2.2",
"xrtpy>=0.4.0",
"sunpy>=5.1.5",
"requests>=2.32.3",
"bs4>=0.0.2",
"lxml>=5.2.2",
"zeep>=4.2.1",
"drms>=0.7.1",
"reproject>=0.13.0",
"ipykernel>=6.29.5",
"jupyterlab",
"httpx",
"jupyter",
"notebook"
]
readme = "README.md"
requires-python = ">= 3.9, <3.13"
license = { text = "BSD 3" }
keywords = ["EMToolKit", "space physics", "package interface"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Physics"
]
[project.scripts]
emtestrun= "EMToolKit.examples:example_run"
emshowdir = "EMToolKit.examples:example_dir"
emtoolkit = "EMToolKit.__main__:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.metadata]
allow-direct-references = true
readme-file = "README.md"
readme-content-type = "text/markdown"
repository = "https://github.com/jeplowman/EMToolKit"
[tool.hatch.build.targets.wheel]
packages = ["EMToolKit"]
[tool.setuptools.package-data]
"EMToolKit.examples" = ["EMToolKit_top_example_07252010.ipynb"]