From 565053d05d2cae4022b7841107d2ba6b446aa6d7 Mon Sep 17 00:00:00 2001 From: Bill Wolf Date: Thu, 29 Aug 2024 16:21:17 -0500 Subject: [PATCH] Preparations for pushing to PyPI. --- README.md | 14 +++++++++----- setup.py | 6 ++++-- 2 files changed, 13 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index a7a27b5..5bd3619 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,14 @@ -py_mesa_reader -============== +mesa_reader +=========== -Tools for easily accessing and manipulating data from MESA in python. +Tools for easily accessing and manipulating data from `MESA star` and `MESA binary` in python. ## Installation -Install by cloning or downloading the repository, `cd` into it and then execute +The easiest way to install is via `pip`: + + pip install mesa_reader + +You can also install by cloning or downloading the repository at github.com/wmwolf/py_mesa_reader, `cd` into it and then execute python setup.py install @@ -12,7 +16,7 @@ or pip install . -to install package on your system. +to install the package on your system. ## Uninstallation Uninstall by executing diff --git a/setup.py b/setup.py index 095bd13..ba46319 100644 --- a/setup.py +++ b/setup.py @@ -1,8 +1,10 @@ from setuptools import setup setup(name='mesa_reader', - version='0.3.3', - description='tools for interacting with output from MESA star', + version='0.3.4', + description='Tools for interacting with output from MESA star and MESA binary', + long_description=open('README.md').read(), + long_description_content_type='text/markdown', url='http://github.com/wmwolf/py_mesa_reader', author='William M. Wolf', author_email='wolfwm@uwec.edu',