From ac55afb68dbd77b9575f18d0548d1a9dc3505666 Mon Sep 17 00:00:00 2001 From: Steven Rieder Date: Thu, 8 Aug 2024 10:06:40 +0200 Subject: [PATCH] fix paths --- pyproject.toml | 2 +- src/{ => amuse_template}/__init__.py | 0 src/{ => amuse_template}/main.py | 0 3 files changed, 1 insertion(+), 1 deletion(-) rename src/{ => amuse_template}/__init__.py (100%) rename src/{ => amuse_template}/main.py (100%) diff --git a/pyproject.toml b/pyproject.toml index 4aed80d..b07bb0d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ requires = ["hatchling"] build-backend = "hatchling.build" [project] -name = "my-amuse-project" +name = "amuse-template" version = "2024.8.0" # year.month.release is a good option, otherwise you can use semantic versioning (major.minor.patch) dependencies = [ "amuse-framework>2024.0.0", diff --git a/src/__init__.py b/src/amuse_template/__init__.py similarity index 100% rename from src/__init__.py rename to src/amuse_template/__init__.py diff --git a/src/main.py b/src/amuse_template/main.py similarity index 100% rename from src/main.py rename to src/amuse_template/main.py