2025-11-21: Working structure

This commit is contained in:
Moussouni, Yaël
2025-11-21 16:12:09 +01:00
parent eaa1c17aeb
commit 80069bb602
4 changed files with 6 additions and 5 deletions

View File

@@ -26,7 +26,7 @@
# along with this program. If not, see https://www.gnu.org/licenses/. # along with this program. If not, see https://www.gnu.org/licenses/.
[project] [project]
name = "manchot-plot" name = "manchot_plot"
version = "0.0.1" version = "0.0.1"
authors = [ authors = [
{ name="Moussouni, Yaël", email="yael.moussouni@astro.unistra.fr" }, { name="Moussouni, Yaël", email="yael.moussouni@astro.unistra.fr" },

View File

@@ -29,4 +29,4 @@ You should have received a copy of the GNU General Public License
along with this program. If not, see www.gnu.org/licenses/. along with this program. If not, see www.gnu.org/licenses/.
""" """
from manchot_plot import * from .manchot_plot import *

View File

@@ -29,4 +29,5 @@ You should have received a copy of the GNU General Public License
along with this program. If not, see www.gnu.org/licenses/. along with this program. If not, see www.gnu.org/licenses/.
""" """
a = 0 def ping():
return "pong"

View File

@@ -1,3 +1,3 @@
import manchot import manchot_plot
print(manchot.a) print(manchot_plot.a)