forked from fastai/fastai
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
60 lines (39 loc) · 2.33 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# 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'], # this must be the same as the name above
version = 1.0 ,
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 = "GNU General Public License",
url = "https://github.com/fastai/fastai",
download_url = 'https://github.com/fastai/fastai/archive/1.0.tar.gz',
install_requires =
['awscli',
'bcolz', 'bleach', 'certifi', 'cycler', 'decorator',
# 'docrepr' ,
'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',]
)