forked from nbgallery/ipydeps
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (21 loc) · 743 Bytes
/
setup.py
File metadata and controls
23 lines (21 loc) · 743 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# vim: expandtab tabstop=4 shiftwidth=4
from setuptools import setup
setup(
name='ipydeps',
version='0.4.2',
author='Bill Allen',
author_email='photo.allen@gmail.com',
description='A pip interface wrapper for installing packages from within Jupyter notebooks.',
license='MIT',
keywords='pip install setup jupyter notebook dependencies'.split(),
url='https://github.com/nbgallery/ipydeps',
download_url='https://github.com/nbgallery/ipydeps/archive/0.4.2.tar.gz',
packages=['ipydeps'],
install_requires=['pip', 'setuptools'],
dependency_links=[],
classifiers=[
'Development Status :: 4 - Beta',
'Topic :: Utilities',
'License :: OSI Approved :: MIT License'
]
)