-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (28 loc) · 1.43 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(name='juicebox-notebook',
packages=['juicebox_notebook'],
version='0.2.1',
description='Package for embedding the juicebox.js hic visualization in IPython notebooks',
long_description=long_description,
long_description_content_type="text/markdown",
license='MIT',
author='Jim Robinson',
url='https://github.com/igvteam/juicebox-notebook',
# download_url='https://github.com/igvteam/juicebox/archive/0.2.1.tar.gz',
keywords=['juicebox', 'bioinformatics', 'genomics', 'visualization', 'ipython', 'jupyter', 'colab'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Framework :: IPython',
],
# install_requires=[
# 'jupyter',
# 'notebook>=4.2.0',
# ],
package_data={'juicebox_notebook': ['js/messageHandler.js', 'js/localNotebookFile.js', 'js/juicebox.min.js']},
)