forked from Esri/hermes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (30 loc) · 1.1 KB
/
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
32
33
34
35
36
from setuptools import setup,find_packages
with open('src/hermes/version.py') as fin: exec(fin.read())
setup(
name='esri-hermes',
version=__version__,
package_dir={'':'src'},
packages=find_packages('src'),
include_package_data=True,
# PyPI MetaData
author='achapkowski',
author_email='[email protected]',
description='Collection of Utilities to Read/Write a Dataset\'s Metadata',
license='Apache License - 2.0',
keywords='esri,arcpy,metadata',
url='https://github.com/Esri/hermes',
classifiers=(
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'License :: OSI Approved :: Apache Software License',
'Topic :: Software Development :: Libraries :: Python Modules',
),
zip_safe=False,
)