Skip to content

Commit

Permalink
0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jph00 committed May 13, 2018
1 parent 192c9a1 commit 6624843
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 50 deletions.
27 changes: 1 addition & 26 deletions MANIFEST
Original file line number Diff line number Diff line change
@@ -1,28 +1,3 @@
setup.cfg
setup.py
fastai/__init__.py
fastai/column_data.py
fastai/conv_learner.py
fastai/core.py
fastai/dataloader.py
fastai/dataset.py
fastai/imports.py
fastai/initializers.py
fastai/io.py
fastai/layer_optimizer.py
fastai/layers.py
fastai/learner.py
fastai/lm_rnn.py
fastai/losses.py
fastai/metrics.py
fastai/model.py
fastai/nlp.py
fastai/plots.py
fastai/rnn_reg.py
fastai/rnn_train.py
fastai/set_spawn.py
fastai/sgdr.py
fastai/structured.py
fastai/torch_imports.py
fastai/transforms.py
fastai/utils.py
fastai/*.py
1 change: 0 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,3 @@ include Makefile
recursive-include fastai/models *
recursive-include fastai/images *


2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ six>=1.11.0
sklearn_pandas>=1.6.0
terminado>=0.6
testpath>=0.3.1
torch>= 0.3.1
torch<0.4
torchtext>=0.2.3
torchvision>=0.2.0
tornado>=4.5.2,<5
Expand Down
35 changes: 13 additions & 22 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,42 +1,33 @@

# coding: utf-8

"""
Setup script for installing fastai
"""

##########################################################################
## Imports
##########################################################################
""" Setup script for installing fastai """

#from distutils.core import setup
from setuptools import setup


##########################################################################
## Setup
##########################################################################

setup(
name = "fastai",
packages = ['fastai', 'fastai/models', 'fastai/models/cifar10'],
version = 0.6 ,
description = "The fast.ai deep learning and machine learning library. Git pull fastai, for all fast.ai sessions and tutorials also",
version = '0.7.0',
description = "The fastai deep learning and machine learning library.",
author = "Jeremy Howard and contributors",
author_email = "[email protected]",
license = "Apache License 2.0",
url = "https://github.com/fastai/fastai",
download_url = 'https://github.com/fastai/fastai/archive/0.6.tar.gz',
download_url = 'https://github.com/fastai/fastai/archive/0.7.0.tar.gz',
install_requires =
['awscli', 'bcolz', 'bleach', 'certifi', 'cycler', 'decorator', 'entrypoints', 'feather-format', 'graphviz', 'html5lib',
['bcolz', 'bleach', 'certifi', 'cycler', 'decorator', 'entrypoints', 'feather-format', 'graphviz', 'html5lib',
'ipykernel', 'ipython', 'ipython-genutils', 'ipywidgets', 'isoweek', 'jedi', 'Jinja2', 'jsonschema', 'jupyter',
'jupyter-client', 'jupyter-console', 'jupyter_contrib_nbextensions', 'jupyter-core', 'kaggle-cli', 'MarkupSafe',
'matplotlib', 'mistune', 'nbconvert', 'nbformat', 'notebook', 'numpy', 'olefile', 'opencv-python', 'pandas',
'pandas_summary', 'pandocfilters', 'pexpect', 'pickleshare', 'Pillow', 'plotnine', 'prompt-toolkit',
'ptyprocess', 'Pygments', 'pyparsing', 'python-dateutil', 'pytz', 'PyYAML', 'pyzmq', 'qtconsole', 'scipy',
'seaborn', 'simplegeneric', 'six', 'sklearn_pandas', 'terminado', 'testpath', 'torchtext', 'tornado', 'tqdm',
'MarkupSafe', 'matplotlib', 'numpy', 'opencv-python', 'pandas',
'pandas_summary', 'pickleshare', 'Pillow', 'plotnine',
'ptyprocess', 'Pygments', 'pyparsing', 'python-dateutil', 'pytz', 'PyYAML', 'pyzmq', 'scipy',
'seaborn', 'simplegeneric', 'sklearn_pandas', 'testpath', 'torch<0.4', 'torchtext', 'torchvision', 'tornado', 'tqdm',
'traitlets', 'wcwidth', 'webencodings', 'widgetsnbextension'],
keywords = ['deeplearning', 'pytorch', 'machinelearning'],
classifiers = ['Development Status :: 3 - Alpha', 'Programming Language :: Python', 'Programming Language :: Python :: 3.6']
classifiers = ['Development Status :: 3 - Alpha',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Topic :: Scientific/Engineering :: Artificial Intelligence']
)

0 comments on commit 6624843

Please sign in to comment.