-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (23 loc) · 781 Bytes
/
Copy pathsetup.py
File metadata and controls
25 lines (23 loc) · 781 Bytes
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
from setuptools import setup, find_packages # Always prefer setuptools over distutils
from codecs import open # To use a consistent encoding
from os import path
setup(
name='arcplus',
version='0.1',
description="a few things missing from Esri's arcpy",
url='https://github.com/maphew/arcplus',
author='Matt Wilkie',
author_email='maphew@gmail.com',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
],
keywords='arcpy, arcgis, arcobjects',
packages=find_packages(),
install_requires=['comtypes'],
zip_safe=False,
)