Skip to content

Commit

Permalink
Merge pull request #1047 from Beforerr/pyproject
Browse files Browse the repository at this point in the history
Init minimal working pyproject.toml
  • Loading branch information
jameswilburlewis authored Oct 31, 2024
2 parents 6241ce4 + 519807f commit e74f1ca
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
[project]
name = "pyspedas"
description = "Python Space Physics Environment Data Analysis Software (pySPEDAS)"
authors = [{ name = "Jim Lewis", email = "[email protected]" }]
readme = "README.md"
requires-python = ">=3.9"
license = "MIT"
dynamic = ["version"]

dependencies = [
"numpy>=1.20.0",
"requests",
"cdflib",
"pytplot-mpl-temp>=2.2.49",
"cdasws>=1.7.24",
"netCDF4",
"astropy",
"scipy",
]

[project.optional-dependencies]
analysis = ["geopack>=1.0.11", "pywavelets"]
client = ["viresclient", "hapiclient>=0.2.2"]

[project.urls]
Documentation = "https://pyspedas.readthedocs.io"
Information = "http://spedas.org/wiki"

[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"

[tool.pdm.version]
source = "scm"

0 comments on commit e74f1ca

Please sign in to comment.