Skip to content

Commit

Permalink
revert back to explicit packages in install_requires
Browse files Browse the repository at this point in the history
  • Loading branch information
LindoNkambule committed Jan 27, 2025
1 parent e18edaa commit c0634c0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
1 change: 0 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
hail
distinctipy
matplotlib>=3.3.3
plotly>=5.7.0
pandas>=0.25.3
Expand Down
6 changes: 2 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,6 @@
with open("README.md", "r") as fh:
long_description = fh.read()

with open('requirements.txt') as f:
required = f.read().splitlines()

classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Console',
Expand Down Expand Up @@ -49,6 +46,7 @@
},
classifiers=classifiers,
keywords='',
install_requires=required,
# install_requires=required,
install_requires=['hail', 'matplotlib', 'numpy', 'pandas', 'pylatex', 'plotly', 'distinctipy'],
zip_safe=False
)

0 comments on commit c0634c0

Please sign in to comment.