Skip to content

Commit

Permalink
new release (#330)
Browse files Browse the repository at this point in the history
  • Loading branch information
haifeng-jin authored Nov 18, 2018
1 parent 4c190d0 commit c205ae1
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 21 deletions.
3 changes: 3 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ before_install:
- sudo apt-get install graphviz
install:
- pip install -r requirements.txt --quiet
- pip install pytest
- pip install pytest-cov
- pip install coverage
- pip install mkdocs
- pip install mkdocs-material
script:
Expand Down
16 changes: 1 addition & 15 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,15 +1 @@
scipy
torch==0.4.1
torchvision==0.2.1
numpy==1.14.5
scikit-learn==0.19.1
scikit-image==0.13.1
keras==2.2.2
tqdm==4.25.0
tensorflow==1.10.0
imageio
pytest
pytest-cov
coverage
requests
GPUtil
.
22 changes: 16 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,24 @@
setup(
name='autokeras',
packages=find_packages(exclude=('tests',)),
install_requires=['torch==0.4.1', 'torchvision==0.2.1', 'numpy>=1.14.5', 'keras==2.2.2', 'scikit-learn==0.19.1',
'tensorflow==1.10.0', 'tqdm==4.25.0', 'imageio', 'GPUtil'],
version='0.3.0',
install_requires=['scipy==1.1.0',
'torch==0.4.1',
'torchvision==0.2.1',
'numpy==1.14.5',
'keras==2.2.2',
'scikit-learn==0.19.1',
'scikit-image==0.13.1',
'tqdm==4.25.0',
'tensorflow==1.10.0',
'imageio==2.4.1',
'requests==2.20.1',
'GPUtil==1.3.0'],
version='0.3.1',
description='AutoML for deep learning',
author='Haifeng Jin',
author='DATA Lab at Texas A&M University',
author_email='[email protected]',
url='http://autokeras.com',
download_url='https://github.com/jhfjhfj1/autokeras/archive/0.3.0.tar.gz',
keywords=['automl'], # arbitrary keywords
download_url='https://github.com/jhfjhfj1/autokeras/archive/0.3.1.tar.gz',
keywords=['AutoML', 'keras'], # arbitrary keywords
classifiers=[]
)

0 comments on commit c205ae1

Please sign in to comment.