diff --git a/README.md b/README.md index 16ddaef..3bd27fc 100755 --- a/README.md +++ b/README.md @@ -1,22 +1,22 @@ *airpg*: Accessing the inverted repeats of archived plastid genomes =================================================================== -[![Build Status](https://travis-ci.com/michaelgruenstaeudl/airgb.svg?branch=master)](https://travis-ci.com/michaelgruenstaeudl/airgb) -[![PyPI status](https://img.shields.io/pypi/status/airgb.svg)](https://pypi.python.org/pypi/airgb/) -[![PyPI pyversions](https://img.shields.io/pypi/pyversions/airgb.svg)](https://pypi.python.org/pypi/airgb/) -[![PyPI version shields.io](https://img.shields.io/pypi/v/airgb.svg)](https://pypi.python.org/pypi/airgb/) -[![PyPI license](https://img.shields.io/pypi/l/airgb.svg)](https://pypi.python.org/pypi/airgb/) +[![Build Status](https://travis-ci.com/michaelgruenstaeudl/airpg.svg?branch=master)](https://travis-ci.com/michaelgruenstaeudl/airpg) +[![PyPI status](https://img.shields.io/pypi/status/airpg.svg)](https://pypi.python.org/pypi/airpg/) +[![PyPI pyversions](https://img.shields.io/pypi/pyversions/airpg.svg)](https://pypi.python.org/pypi/airpg/) +[![PyPI version shields.io](https://img.shields.io/pypi/v/airpg.svg)](https://pypi.python.org/pypi/airpg/) +[![PyPI license](https://img.shields.io/pypi/l/airpg.svg)](https://pypi.python.org/pypi/airpg/) A Python package for automatically accessing the inverted repeats of thousands of plastid genomes stored on NCBI Nucleotide ## INSTALLATION -To get the most recent stable version of *airgb*, run: +To get the most recent stable version of *airpg*, run: - pip install airgb + pip install airpg -Or, alternatively, if you want to get the latest development version of *airgb*, run: +Or, alternatively, if you want to get the latest development version of *airpg*, run: - pip install git+https://github.com/michaelgruenstaeudl/airgb.git + pip install git+https://github.com/michaelgruenstaeudl/airpg.git ## EXAMPLE USAGE diff --git a/setup.py b/setup.py index 59730a9..4c95888 100755 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ description="A package to automatically access the inverted repeats of archived plastid genomes", long_description=long_description, long_description_content_type="text/markdown", - url='https://github.com/michaelgruenstaeudl/airgb', + url='https://github.com/michaelgruenstaeudl/airpg', packages=setuptools.find_packages(), classifiers=[ 'Development Status :: 4 - Beta', @@ -26,10 +26,10 @@ license='BSD', entry_points={ 'console_scripts': [ - 'airgb_retrieve', 'airgb_analyze' # @TM: May need to be specified differently! + 'airpg_retrieve', 'airpg_analyze' # @TM: May need to be specified differently! ], }, - packages=['airgb'], # So that the subfolder 'airgb' is read immediately. + packages=['airpg'], # So that the subfolder 'airpg' is read immediately. #packages = find_packages(), install_requires=['biopython', 'ete3', 'argparse', 'pandas'], scripts=glob.glob('scripts/*'),