-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (20 loc) · 720 Bytes
/
setup.py
File metadata and controls
21 lines (20 loc) · 720 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup, find_packages
setup(
name='jupyshare',
version='1.0.9',
entry_points = {
'console_scripts': ['jupyshare=jupyshare.share:main']
},
packages=find_packages(),
author='bianca subion',
author_email='bianca.subion@gmail.com',
description='Share your python notebooks in the cloud',
url='https://github.com/biancasubion/jupyshare',
download_url='https://github.com/biancasubion/jupyshare/archive/1.0.9.tar.gz',
keywords=['jupyter', 'notebook', 'share'],
install_requires=[
'args==0.1.0',
'clint==0.5.1',
'requests==2.13.0'
],
)