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
|
from distutils.core import setup
setup(
name='PyMemoize',
version='1.0.3',
description='Simple memoizing module.',
url='http://github.com/mikeboers/PyMemoize',
packages=['memoize'],
author='Mike Boers',
author_email='memoize@mikeboers.com',
license='BSD-3',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)
|