Skip to content

Commit

Permalink
Bump setup.py version
Browse files Browse the repository at this point in the history
  • Loading branch information
cmdcolin committed Dec 7, 2023
1 parent 7226cac commit 97b3575
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
#!/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:
long_description = fh.read()

setuptools.setup(
name="jbrowse-jupyter",
version="1.4.0",
version="1.5.1",
author="Teresa De Jesus Martinez",
author_email="[email protected]",
maintainer="Teresa De Jesus Martinez; JBrowse Team",
Expand All @@ -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",
Expand Down

0 comments on commit 97b3575

Please sign in to comment.