-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
25 lines (24 loc) · 857 Bytes
/
setup.py
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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='LFUCache',
description='Cache with LFU eviction scheme.',
version='1.0.0',
packages=['lfucache',],
license='MIT',
author='Laurent Luce',
author_email='[email protected]',
url='https://github.com/laurentluce/lfu-cache',
keywords='lfu cache insertion access deletion',
long_description='Cache with LFU eviction scheme implemented in Python with complexity O(1) for insertion, access and deletion.',
classifiers=(
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
),
)