Skip to content

Commit

Permalink
update to v0.13.4
Browse files Browse the repository at this point in the history
  • Loading branch information
nkarasiak committed Jun 23, 2020
1 parent de11d19 commit ff7c8ff
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 4 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Expand Up @@ -5,8 +5,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.13.3] - Unreleased
## [0.13.4] - Unreleased

## [0.13.3] - 2020-06-23

### Fixed

- Adding psutil to depency

## [0.13.2] - 2020-06-18

Expand Down
2 changes: 1 addition & 1 deletion requirements-dev.txt
Expand Up @@ -13,7 +13,7 @@ psutil
m2r
autopep8
recommonmark
sphinx==2.2.1 # due to rtd bug on 20200418
sphinx
sphinx-rtd-theme
numpydoc
ipykernel
Expand Down
1 change: 0 additions & 1 deletion requirements.txt
@@ -1,6 +1,5 @@
# dependencies for end-user
# Does not include GDAL, so you need to install it before

numpy>=1.10
scipy>=1.0
scikit-learn>=0.16
Expand Down
13 changes: 12 additions & 1 deletion setup.py
Expand Up @@ -23,6 +23,17 @@
with open("README.md", "r") as fh:
long_description = fh.read()

install_requires = []

with open('./requirements.txt') as requirements_txt:
requirements = requirements_txt.read().strip().splitlines()
for requirement in requirements:
if requirement.startswith('#') or requirement == (''):
continue
else:
install_requires.append(requirement)



setuptools.setup(
name='museotoolbox',
Expand All @@ -34,7 +45,7 @@
author='Nicolas Karasiak',
author_email='karasiak.nicolas@gmail.com',
license='GPLv3',
install_requires=["numpy","scipy","matplotlib","scikit-learn",'joblib'],
install_requires=install_requires,
packages=setuptools.find_packages(),
classifiers=[
"Topic :: Scientific/Engineering :: Artificial Intelligence",
Expand Down

0 comments on commit ff7c8ff

Please sign in to comment.