-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
50 lines (43 loc) · 1.73 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
from setuptools import setup
from setuptools import find_packages
try:
from pypandoc import convert
def get_long_description(file_name):
return convert(file_name, 'rst', 'md')
except ImportError:
def get_long_description(file_name):
with open(file_name) as f:
return f.read()
if __name__ == '__main__':
setup(
name='jupyter_helpers',
packages=find_packages(),
version='0.2.3',
license='MIT',
description='A collection of helpers for using IPython in Jupyter(Lab)',
long_description=get_long_description('README.md'),
author='Michal Krassowski',
author_email='krassowski.michal+pypi@gmail.com',
url='https://github.com/krassowski/jupyter-helpers',
keywords=['ipython', 'jupyter', 'jupyterlab', 'notebook', 'helpers'],
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Framework :: IPython',
'Framework :: Jupyter',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Topic :: Utilities',
'Topic :: Software Development :: User Interfaces',
'Topic :: Software Development :: Libraries :: Python Modules',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.9'
],
install_requires=[
'pandas', 'pygments', 'ipywidgets', 'IPython', 'jupyterlab_widgets'
],
)