-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
31 lines (27 loc) · 894 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
26
27
28
29
30
31
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
VERSION = '0.98'
SETUP_DICT = dict(
name='functioncache',
packages=['functioncache'],
install_requires=['portalocker', 'decorator'],
test_requires=['portalocker', 'decorator'],
version=VERSION,
author='zdwiel',
author_email='[email protected]',
url='https://github.com/dwiel/functioncache',
description='Persistent caching decorator',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Utilities',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)
setup(**SETUP_DICT)