-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (18 loc) · 823 Bytes
/
setup.py
File metadata and controls
21 lines (18 loc) · 823 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup
from arcpy_metadata import version
setup(name="arcpy_metadata",
version=version.__version__,
description="Python metadata editing classes for ArcGIS feature classes.",
long_description="""Version 1.x supports ArcGIS Pro and versions below that are for ArcMap.
Version 1.x also supports reading and editing from Server and Portal (including ArcGIS Online).
See all metadata elements at https://github.com/ucd-cws/arcpy_metadata""",
#scripts=[],
packages=['arcpy_metadata',],
install_requires=[
'python>=3.6',
'arcpy>=2.6', # when the metadata export tools were introduced in Pro
'lxml>=2.0' # they changed how the tree behaves here - this was updated to use the new behavior
],
author=version.__author__,
url='https://github.com/ucd-cws/arcpy_metadata',
)