Skip to content

Commit

Permalink
Unpin Python version and dont reread README.md in setup.py (#192)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ch3ri0ur authored Feb 15, 2024
1 parent b8666a5 commit e83dc14
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ def get_version():
name="sphinx-tabs",
version=get_version(),
description="Tabbed views for Sphinx",
long_description=open("README.md").read(),
long_description=long_description,
long_description_content_type="text/markdown",
author="djungelorm",
author_email="[email protected]",
packages=["sphinx_tabs"],
include_package_data=True,
url="https://github.com/executablebooks/sphinx-tabs",
license="MIT",
python_requires="~=3.7",
python_requires=">=3.7",
install_requires=["sphinx", "pygments", "docutils"],
extras_require={
"testing": [
Expand Down

0 comments on commit e83dc14

Please sign in to comment.