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
|
# -*- coding: utf-8 -*-
from distutils.core import setup
setup(
name='lazyarray',
version='0.5.2',
py_modules=['lazyarray'],
license='Modified BSD',
author="Andrew P. Davison",
author_email="andrew.davison@cnrs.fr",
url="http://github.com/NeuralEnsemble/lazyarray/",
description="a Python package that provides a lazily-evaluated numerical array class, larray, based on and compatible with NumPy arrays.",
long_description=open('README.rst').read(),
install_requires=[
"numpy >= 1.13",
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering',
]
)
|