-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (27 loc) · 808 Bytes
/
setup.py
File metadata and controls
30 lines (27 loc) · 808 Bytes
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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
try:
long_description = open("README.rst").read()
except IOError:
long_description = ""
setup(
name="nbmultitask",
version="0.1.0",
description="ipywidget controls for multitasking in Jupyter notebooks",
license="MIT",
author="Micah Fitch",
author_email="micahscopes@gmail.com",
url="https://github.com/micahscopes/nbmultitask",
download_url="https://github.com/micahscopes/nbmultitask/archive/0.1.0.tar.gz",
packages=find_packages(),
install_requires=[
'ipywidgets',
'ipython'
],
long_description=long_description,
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
],
py_modules=['nbmultitask']
)