forked from chpiatt/cache-magic
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·38 lines (36 loc) · 1.24 KB
/
setup.py
File metadata and controls
executable file
·38 lines (36 loc) · 1.24 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
from setuptools import setup
from codecs import open
# 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")
setup(
name='cache-magic',
version='1.0.4.2',
packages=['cache_magic'],
url='https://github.com/doctoryazz/cache-magic',
long_description=long_description,
license='BSD-3-Clause',
author='Doctor Yazz',
author_email='doctoryazz@gmail.com',
description='Versatile cache line magic for jupyter notebooks, based on https://pypi.org/project/cache-magic/ and https://pypi.org/project/ipython-cache/',
classifiers=[
'Development Status :: 7 - Inactive',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Scientific/Engineering :: Information Analysis',
'Framework :: Jupyter',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7'
],
install_requires=[
'astunparse',
'IPython',
'tabulate'
]
)