diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 01:47:29 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 01:47:29 +0000 |
commit | 0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d (patch) | |
tree | a31f07c9bcca9d56ce61e9a1ffd30ef350d513aa /third_party/python/pylru/setup.py | |
parent | Initial commit. (diff) | |
download | firefox-esr-0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d.tar.xz firefox-esr-0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d.zip |
Adding upstream version 115.8.0esr.upstream/115.8.0esr
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'third_party/python/pylru/setup.py')
-rw-r--r-- | third_party/python/pylru/setup.py | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/third_party/python/pylru/setup.py b/third_party/python/pylru/setup.py new file mode 100644 index 0000000000..66d441ca94 --- /dev/null +++ b/third_party/python/pylru/setup.py @@ -0,0 +1,23 @@ +from distutils.core import setup + +setup( + name = "pylru", + version = "1.0.9", + py_modules=['pylru'], + description = "A least recently used (LRU) cache implementation", + author = "Jay Hutchinson", + author_email = "jlhutch+pylru@gmail.com", + url = "https://github.com/jlhutch/pylru", + classifiers = [ + "Programming Language :: Python :: 2.6", + "Programming Language :: Python :: 2.7", + "Programming Language :: Python :: 3", + "Development Status :: 5 - Production/Stable", + "Intended Audience :: Developers", + "License :: OSI Approved :: GNU General Public License (GPL)", + "Operating System :: OS Independent", + "Topic :: Software Development :: Libraries :: Python Modules", + ], + long_description=open('README.txt').read()) + + |