-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.py
29 lines (26 loc) · 1.35 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
import setuptools
with open("README.md", "r") as fh:
longdescription = fh.read()
with open('igv_notebook/VERSION') as version_file:
version = version_file.read().strip()
setuptools.setup(name='igv-notebook',
packages=['igv_notebook'],
version=version,
description='Package for embedding the igv.js genome visualization in IPython notebooks',
long_description=longdescription,
long_description_content_type="text/markdown",
license='MIT',
author='Jim Robinson',
url='https://github.com/igvteam/igv-notebook',
keywords=['igv', 'bioinformatics', 'genomics', 'visualization', 'ipython', 'jupyter'],
install_requires=['ipykernel', 'ipython', 'requests'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Framework :: IPython',
],
package_data={'igv_notebook': ['VERSION', 'VERSION_IGV', 'js/messageHandler.js', 'js/localNotebookFile.js', 'js/igv.iife.js']},
)