-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (26 loc) · 878 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
from distutils.core import setup
try:
from pypandoc import convert
read_md = lambda f: convert(f, 'rst')
except ImportError:
print("warning: pypandoc module not found, could not convert Markdown to RST")
read_md = lambda f: open(f, 'r').read()
setup(
name = 'cache-em-all',
packages = ['cache_em_all'],
version = '0.2.2',
description = 'A simple decorator to cache the results of functions',
author = 'daniyall',
author_email = '[email protected]',
url = 'https://github.com/daniyall/cache_em_all',
download_url = 'https://github.com/daniyall/cache_em_all/archive/0.2.2.tar.gz',
keywords = ['cache', 'cachable', 'save', 'intermediate'],
classifiers = [],
python_requires=">=3",
license="LICENSE",
long_description=read_md('README.md'),
install_requires=[
"pandas",
"pyarrow"
]
)