-
Notifications
You must be signed in to change notification settings - Fork 41
/
setup.py
37 lines (33 loc) · 1.29 KB
/
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
32
33
34
35
36
37
from setuptools import setup, find_packages
from os import path
version = {}
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as readme_file:
long_description = readme_file.read()
with open(path.join(this_directory, 'nbtutor', 'version.py'), encoding='utf-8') as version_file:
exec(version_file.read(), version)
setup(
name="nbtutor",
version=version['__version__'],
description="Visualize Python code execution in Jupyter Notebook cells",
long_description=long_description,
long_description_content_type='text/markdown',
author="Logan Page",
author_email="[email protected]",
license="BSD 3-Clause",
url='https://github.com/lgpage/nbtutor',
keywords="ipython jupyter notebook python tutor visualize code execution",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Framework :: IPython",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Education",
],
packages=find_packages(include=["nbtutor"]),
install_requires=["notebook"],
include_package_data=True,
)