forked from fastai/fastai
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (34 loc) · 2 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# coding: utf-8
"""
Setup script for installing fastai
"""
##########################################################################
## Imports
##########################################################################
#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",
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',
install_requires =
['awscli', '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',
'traitlets', 'wcwidth', 'webencodings', 'widgetsnbextension'],
keywords = ['deeplearning', 'pytorch', 'machinelearning'],
classifiers = ['Development Status :: 3 - Alpha', 'Programming Language :: Python', 'Programming Language :: Python :: 3.6']
)