forked from monetate/s3nb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (24 loc) · 770 Bytes
/
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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name = 's3nb',
version = '0.0.5',
author = "Monetate Inc.",
author_email = "[email protected]",
description = "s3 backed notebook manager for ipython 2.0+",
install_requires = ['ipython[notebook]>=2.0', 'boto'],
keywords = "ipython",
license = "Python",
long_description = """This package enables storage of ipynb files in s3""",
platforms = 'any',
packages = ['s3nb'],
url = "https://github.com/monetate/s3nb",
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
]
)