Skip to content

Commit

Permalink
Merge pull request #27 from IndicoDataSolutions/madison/reqs-3
Browse files Browse the repository at this point in the history
ADD: don't rely on requirements file
  • Loading branch information
madisonmay committed Jun 22, 2018
2 parents d03073b + dd76ab6 commit a58a9d1
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
2 changes: 1 addition & 1 deletion enso/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
from enso.metrics import Metric


__version__, version, VERSION = ('0.1.4',) * 3
__version__, version, VERSION = ('0.1.5',) * 3
13 changes: 11 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,20 @@
import os
from setuptools import setup, find_packages

REQUIREMENTS = open('requirements.txt').readlines()
REQUIREMENTS = [
'pandas>=0.20.3',
'seaborn>=0.8.1',
'tqdm>=4.19.4',
'IndicoIo>=1.1.5',
'scikit-learn>=0.18.0',
'numpy>=1.13.1',
'click>=6.7',
'bs4>=0.0.1',
]

setup(
name='enso',
version='0.1.4',
version='0.1.5',
description='Testing feature-sets and learning algorithms for transfer learning.',
author='indico',
author_email='engineering@indico.io',
Expand Down

0 comments on commit a58a9d1

Please sign in to comment.