Skip to content

Commit

Permalink
Merge pull request #19 from VarIr/req
Browse files Browse the repository at this point in the history
MAINT requirements specified in setup.py
  • Loading branch information
VarIr authored Jul 17, 2019
2 parents 533bc4d + e4e8458 commit 0ea7d7f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,11 +72,11 @@ def find_version(*file_paths):
packages=find_packages(exclude=['contrib', 'docs', 'tests']), # previously used : packages=['skhubness', 'tests'],
python_requires='>=3.7', # 'pip install' will check this
install_requires=['numpy', # These packages will be installed by pip.
'scipy', # For comparison with requirements.txt see also:
'scikit-learn', # https://packaging.python.org/en/latest/requirements.html
'scipy >= 1.2', # For comparison with requirements.txt see also:
'scikit-learn >= 0.21', # https://packaging.python.org/en/latest/requirements.html
'tqdm',
'pybind11', # Required for nmslib build
'joblib',
'joblib >= 0.12',
'nmslib',
'falconn;platform_system!="Windows"', # falconn is not available on Windows; see also PEP 508
],
Expand All @@ -86,7 +86,7 @@ def find_version(*file_paths):
},
package_data={'examples': ['data/*',
'skhubness/data/dexter/*'], },
include_package_data=True,
include_package_data=True, # to include data in wheel
project_urls={ # Optional
'Bug Reports': 'https://github.com/VarIr/scikit-hubness/issues',
'Documentation': 'https://scikit-hubness.readthedocs.io',
Expand Down
2 changes: 1 addition & 1 deletion skhubness/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

""" Python package for nearest neighbor retrieval in high-dimensional space."""

__version__ = '0.21.0a6'
__version__ = '0.21.0a7'

from . import analysis
from . import data
Expand Down

0 comments on commit 0ea7d7f

Please sign in to comment.