Skip to content
This repository has been archived by the owner on Jul 10, 2021. It is now read-only.

Commit

Permalink
Moving away from setup.py to requirements.txt. Python packaging is a …
Browse files Browse the repository at this point in the history
…disaster.
  • Loading branch information
alexjc committed Dec 20, 2015
1 parent ddccfe6 commit 318b8ee
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
scikit-learn>=0.17
git+https://github.com/Theano/Theano.git@a85a44fc#egg=Theano==0.8-dev
git+https://github.com/Lasagne/Lasagne.git@358d9f4#egg=Lasagne==0.2-dev
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@


install_requires = [
'scikit-learn',
'theano',
'scikit-learn>=0.17',
'Theano>=0.8-dev',
'Lasagne>=0.2-dev',
'colorama' if sys.platform == 'win32' else '',
'lasagne',
]

tests_require = [
Expand Down
2 changes: 1 addition & 1 deletion sknn/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from __future__ import (absolute_import, unicode_literals, print_function)

__author__ = 'alexjc, ssamot'
__version__ = '0.4'
__version__ = '0.5'


import os
Expand Down

0 comments on commit 318b8ee

Please sign in to comment.