From 2021c5bb05bdf5b1c1c6baf83ed3ee54ef07d594 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=20Kr=C3=BCger?= Date: Wed, 9 Dec 2020 16:56:55 +0100 Subject: [PATCH] renamed to alma --- .gitignore | 2 +- {al2 => alma}/__init__.py | 0 {al2 => alma}/batch.py | 0 {al2 => alma}/experiment.py | 0 {al2 => alma}/plan.py | 0 setup.py | 4 ++-- 6 files changed, 3 insertions(+), 3 deletions(-) rename {al2 => alma}/__init__.py (100%) rename {al2 => alma}/batch.py (100%) rename {al2 => alma}/experiment.py (100%) rename {al2 => alma}/plan.py (100%) diff --git a/.gitignore b/.gitignore index 2b852e5..1905dcb 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,4 @@ -al2.egg-info/ +*.egg-info/ __pycache__ dist/ diff --git a/al2/__init__.py b/alma/__init__.py similarity index 100% rename from al2/__init__.py rename to alma/__init__.py diff --git a/al2/batch.py b/alma/batch.py similarity index 100% rename from al2/batch.py rename to alma/batch.py diff --git a/al2/experiment.py b/alma/experiment.py similarity index 100% rename from al2/experiment.py rename to alma/experiment.py diff --git a/al2/plan.py b/alma/plan.py similarity index 100% rename from al2/plan.py rename to alma/plan.py diff --git a/setup.py b/setup.py index b111c8c..3e23a66 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ from setuptools import setup, find_packages -setup(name="al2", +setup(name="alma", version="0.1.0", - packages=["al2"], + packages=["alma"], author="Tom Krueger", python_requires=">=3")