-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (24 loc) · 1.01 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
#!/usr/bin/env python
from distutils.core import setup
setup(
name='jupytercustomsort',
version='0.1.1',
description='Custom sort order for Jupyter file list',
long_description='This package provides both a server extension and a notebook extension to provide a custom sort order for Jupyter file lists. When both are enabled, a `.custom_order` JSON file can be placed in any directory to determine the sort order.',
author='Robert Schroll',
author_email='[email protected]',
url='https://github.com/thedataincubator/jupytercustomsort',
packages=['jupytercustomsort'],
package_data={'jupytercustomsort': ['nbext/*']},
license='BSD',
classifiers=[
'Development Status :: 4 - Beta',
'Framework :: IPython',
'Framework :: Jupyter',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3'
]
)