forked from SmartDataInnovationLab/ipython-cache
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·42 lines (38 loc) · 1.22 KB
/
Copy pathsetup.py
File metadata and controls
executable file
·42 lines (38 loc) · 1.22 KB
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
33
34
35
36
37
38
39
40
41
42
from setuptools import setup
from codecs import open
from os import path
# Get the long description from the README file
long_description = ''
try:
with open('README.rst', encoding='utf8') as f:
long_description = f.read()
except IOError:
print("could not locate README")
pass
setup(
name='cache-magic',
version='1.0.4',
packages=['cache_magic'],
url='https://github.com/pyython/cache-magic',
long_description=long_description,
license='BSD-3-Clause',
author='Chris Piatt',
author_email='chris@pyython.com',
description='Versatile cache line magic for jupyter notebooks, based on https://pypi.org/project/ipython-cache/',
classifiers=[
'Development Status :: 7 - Inactive',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
'Framework :: Jupyter',
'Intended Audience :: Science/Research',
'License :: Other/Proprietary License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering :: Information Analysis'
],
install_requires=[
'astunparse',
'IPython',
'tabulate'
],
)