From 64b45a2f8db318d20860cd9dbbfad4a9121b4661 Mon Sep 17 00:00:00 2001 From: "Matthew Dillon (diogenes)" Date: Mon, 16 Sep 2013 20:37:44 -0800 Subject: [PATCH] Renamed to 'AKExtract' --- README.md | 12 ++++++------ {snapextract => akextract}/__init__.py | 0 {snapextract => akextract}/_backend.py | 0 docs/Makefile | 8 ++++---- docs/conf.py | 14 +++++++------- docs/index.rst | 16 ++++++++-------- setup.py | 4 ++-- 7 files changed, 27 insertions(+), 27 deletions(-) rename {snapextract => akextract}/__init__.py (100%) rename {snapextract => akextract}/_backend.py (100%) diff --git a/README.md b/README.md index 28ba107..8a2080f 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,12 @@ -SNAPExtract -=========== +AKExtract +========= Extract air temperatures from SNAP datasets What is it? ----------- -SNAPExtract is a simple tool to assist with extracting point-data from SNAP datasets +AKExtract is a simple tool to assist with extracting point-data from SNAP datasets Prerequisites ------------- @@ -22,7 +22,7 @@ Installation 1) Clone the repo: - git clone https://github.com/thermokarst/snapextract + git clone https://github.com/thermokarst/akextract 2) Get the data from http://snap.uaf.edu. @@ -33,11 +33,11 @@ Installation $ make test3 4) If everything passes, you are probably ready to plug this into your project. For -an example check out [SNAPIndices](http://www.github.com/thermokarst/snapindices). +an example check out [AKIndices](http://www.github.com/thermokarst/akindices). Contact ------- Do you have an idea for a feature? Find a bug? -Reach me at [matthewrdillon@gmail.com](mailto:matthewrdillon@gmail.com) +Reach me at [mrdillon@gmail.com](mailto:mrdillon@gmail.com) diff --git a/snapextract/__init__.py b/akextract/__init__.py similarity index 100% rename from snapextract/__init__.py rename to akextract/__init__.py diff --git a/snapextract/_backend.py b/akextract/_backend.py similarity index 100% rename from snapextract/_backend.py rename to akextract/_backend.py diff --git a/docs/Makefile b/docs/Makefile index 4eb2197..e3ba5f6 100755 --- a/docs/Makefile +++ b/docs/Makefile @@ -77,17 +77,17 @@ qthelp: @echo @echo "Build finished; now you can run "qcollectiongenerator" with the" \ ".qhcp project file in $(BUILDDIR)/qthelp, like this:" - @echo "# qcollectiongenerator $(BUILDDIR)/qthelp/SNAPIndices.qhcp" + @echo "# qcollectiongenerator $(BUILDDIR)/qthelp/AKExtract.qhcp" @echo "To view the help file:" - @echo "# assistant -collectionFile $(BUILDDIR)/qthelp/SNAPIndices.qhc" + @echo "# assistant -collectionFile $(BUILDDIR)/qthelp/AKExtract.qhc" devhelp: $(SPHINXBUILD) -b devhelp $(ALLSPHINXOPTS) $(BUILDDIR)/devhelp @echo @echo "Build finished." @echo "To view the help file:" - @echo "# mkdir -p $$HOME/.local/share/devhelp/SNAPIndices" - @echo "# ln -s $(BUILDDIR)/devhelp $$HOME/.local/share/devhelp/SNAPIndices" + @echo "# mkdir -p $$HOME/.local/share/devhelp/AKExtract" + @echo "# ln -s $(BUILDDIR)/devhelp $$HOME/.local/share/devhelp/AKExtract" @echo "# devhelp" epub: diff --git a/docs/conf.py b/docs/conf.py index 44ed4f8..7bcaec5 100755 --- a/docs/conf.py +++ b/docs/conf.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# SNAPIndices documentation build configuration file, created by +# AKExtract documentation build configuration file, created by # sphinx-quickstart on Thu Mar 28 16:33:50 2013. # # This file is execfile()d with the current directory set to its containing dir. @@ -40,7 +40,7 @@ source_suffix = '.rst' master_doc = 'index' # General information about the project. -project = u'SNAPIndices' +project = u'AKExtract' copyright = u'2013, Matthew Ryan Dillon' # The version info for the project you're documenting, acts as replacement for @@ -164,7 +164,7 @@ html_last_updated_fmt = '%b %d, %Y' #html_file_suffix = None # Output file base name for HTML help builder. -htmlhelp_basename = 'SNAPIndicesdoc' +htmlhelp_basename = 'AKExtractdoc' # -- Options for LaTeX output -------------------------------------------------- @@ -183,7 +183,7 @@ latex_elements = { # Grouping the document tree into LaTeX files. List of tuples # (source start file, target name, title, author, documentclass [howto/manual]). latex_documents = [ - ('index', 'SNAPIndices.tex', u'SNAPIndices Documentation and Source', + ('index', 'AKExtract.tex', u'AKExtract Documentation and Source', u'Matthew Ryan Dillon', 'manual'), ] @@ -213,7 +213,7 @@ latex_documents = [ # One entry per manual page. List of tuples # (source start file, name, description, authors, manual section). man_pages = [ - ('index', 'snapindices', u'SNAPIndices Documentation', + ('index', 'akextract', u'AKExtract Documentation', [u'Matthew Ryan Dillon'], 1) ] @@ -227,8 +227,8 @@ man_pages = [ # (source start file, target name, title, author, # dir menu entry, description, category) texinfo_documents = [ - ('index', 'SNAPIndices', u'SNAPIndices Documentation', - u'Matthew Ryan Dillon', 'SNAPIndices', 'One line description of project.', + ('index', 'AKExtract', u'AKExtract Documentation', + u'Matthew Ryan Dillon', 'AKExtract', 'One line description of project.', 'Miscellaneous'), ] diff --git a/docs/index.rst b/docs/index.rst index 7b73b60..f299828 100755 --- a/docs/index.rst +++ b/docs/index.rst @@ -1,31 +1,31 @@ -************************************ -SNAPExtract Documentation and Source -************************************ +********************************** +AKExtract Documentation and Source +********************************** .. toctree:: :maxdepth: 4 .. default-domain:: python -.. automodule:: snapextract +.. automodule:: akextract -SNAPExtract is a Python project, currently supported under version +AKExtract is a Python project, currently supported under version 2.7.x and 3.3.x. Requirements: gdal, numpy Option: nose (for testing), sphinx (for docs) -Module: snapextract.backend +Module: akextract.backend --------------------------- Automatic API Documentation. -.. automodule:: snapextract.backend +.. automodule:: akextract.backend :members: SNAPDataSet, GeoRefData Source: backend.py ^^^^^^^^^^^^^^^^^^ -.. literalinclude:: ../snapextract/_backend.py +.. literalinclude:: ../akextract/_backend.py Tests ----- diff --git a/setup.py b/setup.py index 6a92b63..527406e 100755 --- a/setup.py +++ b/setup.py @@ -10,13 +10,13 @@ with open('LICENSE') as f: license = f.read() setup( - name='SNAPExtract', + name='AKExtract', version='0.1.0', description='Extract climate data from SNAP datasets', long_description=readme, author='Matthew Ryan Dillon', author_email='matthewrdillon@gmail.com', - url='https://github.com/thermokarst/snapextract', + url='https://github.com/thermokarst/akextract', license=license, packages=find_packages(exclude=('tests', 'docs')) )