diff --git a/setup.py b/setup.py index 73db3c2..b10a28f 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ #!/usr/bin/env python3 import setuptools -with open('requirements.txt') as f: +with open("requirements.txt") as f: requires = f.read().splitlines() with open("README.md", "r", encoding="utf-8") as fh: @@ -9,7 +9,7 @@ setuptools.setup( name="jbrowse-jupyter", - version="1.4.0", + version="1.5.0", author="Teresa De Jesus Martinez", author_email="tere486martinez@gmail.com", maintainer="Teresa De Jesus Martinez; JBrowse Team", @@ -24,9 +24,9 @@ project_urls={ "Bug Tracker": "https://github.com/GMOD/jbrowse-jupyter/issues", }, - packages=['jbrowse_jupyter'], + packages=["jbrowse_jupyter"], python_requires=">=3.6", - tests_require=['pytest'], + tests_require=["pytest"], classifiers=[ "Programming Language :: Python :: 3", "Topic :: Scientific/Engineering",