Skip to content

Commit

Permalink
BLD: moved installation requirements into requirements.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffgortmaker committed Apr 24, 2018
1 parent 6f0056f commit ec345c0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ graft tests/data

include README.rst
include LICENSE.txt
include requirements.txt

prune docs/api
prune docs/images
Expand Down
2 changes: 2 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
numpy
scipy
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
name='pyblp',
packages=find_packages(),
python_requires='>=3.6',
install_requires=['numpy', 'scipy'],
install_requires=read('requirements.txt').splitlines(),
extras_require={
'tests': ['pytest', 'pytest-xdist'],
'docs': ['sphinx', 'pandas', 'ipython', 'matplotlib', 'sphinx_rtd_theme'],
Expand Down

0 comments on commit ec345c0

Please sign in to comment.