File: setup.py

package info (click to toggle)
python-memoize 1.0.3-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 112 kB
  • sloc: python: 324; makefile: 3
file content (27 lines) | stat: -rwxr-xr-x 738 bytes parent folder | download | duplicates (4)
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',
    ],
    
)