Skip to content

Commit

Permalink
fix config
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolasaunai committed May 4, 2024
1 parent 53df0b7 commit 62f2b05
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,5 +93,7 @@ values = mpm.current_density()

## Credits

We acknowledge support from:

- The space plasma team of the [Laboratory of Plasma Physics](https://www.lpp.polytechnique.fr)

This package was created with [Cookiecutter](https://github.com/audreyr/cookiecutter) and the [audreyr/cookiecutter-pypackage](https://github.com/audreyr/cookiecutter-pypackage) project template.
5 changes: 4 additions & 1 deletion mpmaps/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
from pathlib import Path
__author__ = """Nicolas Aunai"""
__email__ = "[email protected]"
__version__ = "0.1.0"

from platformdirs import user_data_dir
import urllib.request
import os
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ classifiers = [
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = ["pandas", "numpy", "matplotlib", "scipy"]
dependencies = ["pandas", "numpy", "matplotlib", "scipy", "spok"]
[project.urls]
homepage = "https://github.com/LaboratoryOfPlasmaPhysics/mpmaps"

Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ tag = True
search = version = "{current_version}"
replace = version = "{new_version}"

[bumpversion:file:space/__init__.py]
[bumpversion:file:mpmaps/__init__.py]
search = __version__ = '{current_version}'
replace = __version__ = '{new_version}'

Expand Down

0 comments on commit 62f2b05

Please sign in to comment.