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")