setup.py 1.5 KB

1234567891011121314151617181920212223242526272829303132
  1. %%writefile setup.py
  2. # coding: utf-8
  3. """ Setup script for installing fastai """
  4. #from distutils.core import setup
  5. from setuptools import setup
  6. setup(
  7. name = "fastai",
  8. packages = ['fastai', 'fastai/models', 'fastai/models/cifar10'],
  9. version = '0.7.0',
  10. description = "The fastai deep learning and machine learning library.",
  11. author = "Jeremy Howard and contributors",
  12. author_email = "info@fast.ai",
  13. license = "Apache License 2.0",
  14. url = "https://github.com/fastai/fastai",
  15. download_url = 'https://github.com/fastai/fastai/archive/0.7.0.tar.gz',
  16. install_requires =
  17. ['bcolz', 'bleach', 'certifi', 'cycler', 'decorator', 'entrypoints', 'feather-format', 'graphviz', 'html5lib',
  18. 'ipykernel', 'ipython', 'ipython-genutils', 'ipywidgets', 'isoweek', 'jedi', 'Jinja2', 'jsonschema', 'jupyter',
  19. 'MarkupSafe', 'matplotlib', 'numpy', 'opencv-python', 'pandas',
  20. 'pandas_summary', 'pickleshare', 'plotnine', 'Pygments', 'pyparsing', 'python-dateutil', 'pytz', 'PyYAML', 'pyzmq', 'scipy',
  21. 'seaborn', 'simplegeneric', 'sklearn_pandas', 'testpath', 'tornado', 'tqdm',
  22. 'traitlets', 'wcwidth', 'webencodings', 'widgetsnbextension'],
  23. keywords = ['deeplearning', 'pytorch', 'machinelearning'],
  24. classifiers = ['Development Status :: 3 - Alpha',
  25. 'Programming Language :: Python',
  26. 'Programming Language :: Python :: 3.6',
  27. 'Topic :: Scientific/Engineering :: Artificial Intelligence']
  28. )