Skip to content

Commit

Permalink
Modularise requirements.txt from thunor-web
Browse files Browse the repository at this point in the history
  • Loading branch information
alubbock committed Mar 22, 2021
1 parent 4af7efb commit 63c5c2b
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install flake8 pytest nbval django codecov pytest-cov numpy scipy pandas plotly seaborn tables
python -m pip install flake8 pytest nbval django codecov pytest-cov
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Lint with flake8
run: |
Expand Down
11 changes: 11 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
ipython==7.12.0
numpy==1.18.4
python-magic==0.4.15
xlrd==1.2.0
XlsxWriter==1.2.7
pandas==1.0.3
plotly==4.5.0
scipy==1.4.1
matplotlib==3.1.3
seaborn==0.10.0
tables==3.6.1
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def main():
author_email='code@alexlubbock.com',
url='https://www.thunor.net',
packages=['thunor'],
install_requires=['numpy', 'scipy', 'pandas', 'plotly==4.5.0', 'seaborn', 'tables'],
install_requires=['numpy', 'scipy', 'pandas', 'plotly', 'seaborn', 'tables'],
tests_require=['pytest', 'nbval', 'django', 'nbformat>4,<5'],
cmdclass=versioneer.get_cmdclass(),
zip_safe=True,
Expand Down

0 comments on commit 63c5c2b

Please sign in to comment.