Skip to content

Commit

Permalink
updated setup, added pip badge
Browse files Browse the repository at this point in the history
  • Loading branch information
joshpsawyer committed Mar 10, 2020
1 parent 66f4005 commit 9af849b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# extarc - Utility functions for `arcpy`

[![Build Status](https://travis-ci.com/dorkwood/extarc.svg?branch=master)](https://travis-ci.com/dorkwood/extarc)
[![Latest pypi version](https://img.shields.io/pypi/v/extarc)](https://pypi.org/project/extarc/)

This repository contains python functions for commonly repeated tasks, e.g. getting new scratch feature classes in a scratch gdb, or getting certain projections. It's named extarc because it... **ext**ends **arc**py. It also sounds like a cool ship from [The Expanse](https://en.wikipedia.org/wiki/The_Expanse_(TV_series)) which you should really watch. It utilizes the `arcpy` module which ships with ArcMap Desktop / ArcGIS Pro and so it's assumed that your python environment has access to these modules. That is, if you can't `import arcpy` already, why are you trying to use a helper library? Currently, arcpy is _not_ part of requirements.txt because it's not clear whether it will pass a CI check.

Expand Down
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,22 @@
long_description = fh.read()

setuptools.setup(
name="extarc-joshpsawyer", # Replace with your own username
name="extarc",
version="0.0.1",
author="Josh P. Sawyer",
author_email="[email protected]",
license="MIT",
description="A collection of functions for extending ESRI's arcpy module. Mostly utility or helper functions.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/joshpsawyer/extarc",
url="https://github.com/dorkwood/extarc",
packages=setuptools.find_packages(),
classifiers=[
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
"License :: OSI Approved :: GNU GPLv3",
"License :: OSI Approved :: MIT License",
],
# currently, no explicitly set python version requirement
# python_requires='>=3.6',
python_requires='>=2.7'
)

0 comments on commit 9af849b

Please sign in to comment.