-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
36 lines (33 loc) · 1.16 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
#!/usr/bin/env python3
import setuptools
with open("requirements.txt") as f:
requires = f.read().splitlines()
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="jbrowse-jupyter",
version="1.5.9",
author="Teresa De Jesus Martinez",
author_email="[email protected]",
maintainer="Teresa De Jesus Martinez; JBrowse Team",
maintainer_email="[email protected]",
description="Jupyter Notebooks extension for showing JBrowse views",
license="Apache-2.0",
include_package_data=True,
long_description=long_description,
install_requires=requires,
long_description_content_type="text/markdown",
url="https://github.com/GMOD/jbrowse-jupyter",
project_urls={
"Bug Tracker": "https://github.com/GMOD/jbrowse-jupyter/issues",
},
packages=["jbrowse_jupyter"],
python_requires=">=3.6",
tests_require=["pytest"],
classifiers=[
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
],
)