forked from jantic/DeOldify
-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
33 lines (28 loc) · 1.51 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
# coding: utf-8
""" Setup script for installing fastai """
#from distutils.core import setup
from setuptools import setup
setup(
name = "fastai",
packages = ['fastai', 'fastai/models', 'fastai/models/cifar10'],
version = '0.7.0',
description = "The fastai deep learning and machine learning library.",
author = "Jeremy Howard and contributors",
author_email = "info@fast.ai",
license = "Apache License 2.0",
url = "https://github.com/fastai/fastai",
download_url = 'https://github.com/fastai/fastai/archive/0.7.0.tar.gz',
install_requires =
['bcolz', 'bleach', 'certifi', 'cycler', 'decorator', 'entrypoints', 'feather-format', 'graphviz', 'html5lib',
'ipykernel', 'ipython', 'ipython-genutils', 'ipywidgets', 'isoweek', 'jedi', 'Jinja2', 'jsonschema', 'jupyter',
'MarkupSafe', 'matplotlib', 'numpy', 'opencv-python', 'pandas',
'pandas_summary', 'pickleshare', 'Pillow', 'plotnine',
'Pygments', 'pyparsing', 'python-dateutil', 'pytz', 'PyYAML', 'pyzmq', 'scipy',
'seaborn', 'simplegeneric', 'sklearn_pandas', 'testpath', 'tensorboardX', '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',
'Topic :: Scientific/Engineering :: Artificial Intelligence']
)