forked from HDFGroup/PyHexad
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (28 loc) · 1.31 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
##############################################################################
# Copyright by The HDF Group. #
# All rights reserved. #
# #
# This file is part of PyHexad. The full PyHexad copyright notice, including #
# terms governing use, modification, and redistribution, is contained in #
# the file COPYING, which can be found at the root of the source code #
# distribution tree. If you do not have access to this file, you may #
# request a copy from help@hdfgroup.org. #
##############################################################################
import setuptools
from distutils.core import setup
setup(
name='pyhexad',
version='0.1.6',
author='The HDF Group, Enthought Inc.',
author_email='gheber@hdfgroup.org, dpinte@enthought.com',
url='http://www.hdfgroup.org/',
description='An HDF5 Excel add-in using PyXLL',
license='BSD',
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 2.7',
],
keywords='excel hdf5 pyxll',
packages=setuptools.find_packages()
)