Skip to content

Commit

Permalink
v0.13.5
Browse files Browse the repository at this point in the history
  • Loading branch information
nkarasiak committed Jun 24, 2020
1 parent 3b1d738 commit 55753c9
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 12 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@ 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.5] - Unreleased
## [0.13.5] - 2020-06-24

### Fixed

- Requirements is not directly written inside setup.py due to bugs.

## [0.13.4] - 2020-06-24

Expand Down
17 changes: 6 additions & 11 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,6 @@
with open('README.md', 'r') as fh:
long_description = fh.read()

install_requires = []

with open('requirements.txt','r') 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(
Expand All @@ -45,7 +35,12 @@
author='Nicolas Karasiak',
author_email='[email protected]',
license='GPLv3',
install_requires=install_requires,
install_requires=['numpy>=1.10',
'scipy>=1.0',
'scikit-learn>=0.16',
'matplotlib',
'joblib',
'psutil'],
packages=setuptools.find_packages(),
classifiers=[
"Topic :: Scientific/Engineering :: Artificial Intelligence",
Expand Down

0 comments on commit 55753c9

Please sign in to comment.