Skip to content

Commit

Permalink
Fix req in setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
joshlk committed Oct 3, 2024
1 parent 684c9b9 commit f656ebc
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,14 +60,7 @@ def no_cythonize(extensions, **_ignore):
with open("requirements.txt") as fp:
install_requires = fp.read().strip().split("\n")

with open("requirements-dev.txt") as fp:
dev_requires = fp.read().strip().split("\n")

setup(
ext_modules=extensions,
install_requires=install_requires,
extras_require={
"dev": dev_requires,
"docs": ["sphinx", "sphinx-rtd-theme"]
}
)

0 comments on commit f656ebc

Please sign in to comment.