mirror of
https://github.com/wassname/cachier.git
synced 2026-09-12 12:10:48 +08:00
first code commit. Basic functionality
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
"""Setup file for the Cachier package."""
|
||||
|
||||
# This file is part of Cachier.
|
||||
# https://github.com/shaypal5/cachier
|
||||
|
||||
# Licensed under the MIT license:
|
||||
# http://www.opensource.org/licenses/MIT-license
|
||||
# Copyright (c) 2016, Shay Palachy <shaypal5@gmail.com>
|
||||
|
||||
from setuptools import setup, find_packages
|
||||
import versioneer
|
||||
|
||||
setup(
|
||||
name='Cachier',
|
||||
version=versioneer.get_version(),
|
||||
cmdclass=versioneer.get_cmdclass(),
|
||||
description='Persistent, stale-free memoization decorators for Python.',
|
||||
license='MIT',
|
||||
author='Shay Palachy',
|
||||
author_email='shaypal5@gmail.com',
|
||||
url='https://github.com/shaypal5/cachier',
|
||||
packages=find_packages(),
|
||||
install_requires=[
|
||||
],
|
||||
keywords=['cache', 'persistence', 'mongo'],
|
||||
classifiers=[],
|
||||
)
|
||||
Reference in New Issue
Block a user