forked from jkeifer/arcpy-extensions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (25 loc) · 754 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#!/usr/bin/env python
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
with open('VERSION.txt', 'r') as v:
version = v.read().strip()
with open('README.md', 'r') as r:
readme = r.read()
download_url = (
'https://github.com/jkeifer/arcpy-extensions/tarball/%s'
)
setup(
name='arcpy-extensions',
packages=['arcpy_extensions'],
version=version,
description=('A collection of helper functions and classes for the ArcGIS arcpy interface.'),
long_description=readme,
author='Jarrett Keifer',
author_email='[email protected]',
url='https://github.com/jkeifer/arcpy-extensions',
download_url=download_url % version,
install_requires=[],
license='MIT'
)