-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (30 loc) · 987 Bytes
/
setup.py
File metadata and controls
32 lines (30 loc) · 987 Bytes
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
28
29
30
31
32
import os
from setuptools import setup
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.md')).read()
setup(
name='function-cache',
version='0.2.0',
packages=['function_cache'],
description='A Django-based convenience decorator for caching results of functions to various backends.',
long_description=README,
long_description_content_type='text/markdown',
author='5 Health Inc',
author_email='hello@botmd.io',
url='https://github.com/fivehealth/function-cache',
license='MIT License',
install_requires=[
'Django>2.0',
],
python_requires='>=3',
keywords='django cache',
classifiers=[
'Development Status :: 4 - Beta',
'Programming Language :: Python :: 3',
'Framework :: Django',
'Framework :: Django :: 2.2',
'Framework :: Django :: 3.0',
'Framework :: Django :: 3.1',
'License :: OSI Approved :: MIT License',
],
)