Skip to content

Commit

Permalink
Updated setup.py and submitted to PyPI - changed README to reflect that
Browse files Browse the repository at this point in the history
  • Loading branch information
nickrsan committed Nov 12, 2014
1 parent 92e7ab6 commit e4bb1f6
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -104,3 +104,4 @@ $RECYCLE.BIN/
*.msi
*.msm
*.msp
MANIFEST
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@ Arcpy Metadata Editor (arcpy_metadata)
==============
Whether you create it or not, metadata is a critical part of GIS analysis. ArcGIS includes a built-in GUI metadata editor, but has scant access to metadata properties from Python. The arcpy_metadata package provides this access, allowing large Python packages that generate their own geospatial outputs in ArcGIS to properly document the data.

Getting arcpy_metadata
----------------------
arcpy_metadata is pure Python and its only dependency is arcpy (installed with ArcGIS). It's available on the Python Package Index so you can get arcpy_metadata via pip (pip install arcpy_metadata).

If you don't have or don't know how to use pip, you can install arcpy_metadata by cloning/downloading this repository and running setup.py install in the root folder

Using arcpy_metadata
--------------------
As of this writing, documentation is still to come, but the source code is short, so we encourage you to take a look at it in the meantime. Otherwise, following is an example usage of arcpy_metadata:

```python
Expand Down
2 changes: 1 addition & 1 deletion arcpy_metadata/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from __future__ import print_function

__version__ = '0.2'
__version__ = '0.2.5'
__author__ = 'nickrsan'

import xml
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

from distutils.core import setup

setup(name="Arcpy Metadata Editor (arcpy_metadata)",
setup(name="arcpy_metadata",
version=meta_version,
description="Python metadata editing classes for ArcGIS feature classes",
#scripts=[],
Expand Down

0 comments on commit e4bb1f6

Please sign in to comment.