no bug - Bumping Firefox l10n changesets r=release a=l10n-bump DONTBUILD CLOSED TREE
[gecko.git] / third_party / python / pylru / setup.py
blob66d441ca94545770d183a7c0c6a18de1e5461218
1 from distutils.core import setup
3 setup(
4 name = "pylru",
5 version = "1.0.9",
6 py_modules=['pylru'],
7 description = "A least recently used (LRU) cache implementation",
8 author = "Jay Hutchinson",
9 author_email = "jlhutch+pylru@gmail.com",
10 url = "https://github.com/jlhutch/pylru",
11 classifiers = [
12 "Programming Language :: Python :: 2.6",
13 "Programming Language :: Python :: 2.7",
14 "Programming Language :: Python :: 3",
15 "Development Status :: 5 - Production/Stable",
16 "Intended Audience :: Developers",
17 "License :: OSI Approved :: GNU General Public License (GPL)",
18 "Operating System :: OS Independent",
19 "Topic :: Software Development :: Libraries :: Python Modules",
21 long_description=open('README.txt').read())