Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ def calculate_version():
version = list(filter(lambda x: '__version__' in x, initpy))[0].split('\'')[1]
return version


package_version = calculate_version()

setup(
Expand Down Expand Up @@ -35,9 +36,11 @@ def calculate_version():
''',
zip_safe=True,
install_requires=['numpy>=1.12.1', 'scipy>=0.19.0', 'scikit-learn>=0.18.1', 'deap>=1.0', 'update_checker>=0.16', 'tqdm>=4.11.2'],
extras_require={'xgboost': ['xgboost>=0.6'],
'skrebate': ['skrebate>=0.3.4'],
'mdr': ['scikit-mdr>=0.4.2']},
extras_require={
'xgboost': ['xgboost>=0.6'],
'skrebate': ['skrebate>=0.3.4'],
'mdr': ['scikit-mdr>=0.4.2']
},
classifiers=[
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
Expand Down
Loading