diff --git a/README.md b/README.md index cf2da25..74302b7 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/mpmaps/__init__.py b/mpmaps/__init__.py index aabc738..23c6cfe 100644 --- a/mpmaps/__init__.py +++ b/mpmaps/__init__.py @@ -1,4 +1,7 @@ -from pathlib import Path +__author__ = """Nicolas Aunai""" +__email__ = "nicolas.aunai@lpp.polytechnique.fr" +__version__ = "0.1.0" + from platformdirs import user_data_dir import urllib.request import os diff --git a/pyproject.toml b/pyproject.toml index 6bc1240..0252eed 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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" diff --git a/setup.cfg b/setup.cfg index efa50fb..722fda8 100644 --- a/setup.cfg +++ b/setup.cfg @@ -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}'