setup.py 1.5 KB

123456789101112131415161718192021222324252627282930313233
  1. # coding: utf-8
  2. """ Setup script for installing fastai """
  3. #from distutils.core import setup
  4. from setuptools import setup
  5. setup(
  6. name = "fastai",
  7. packages = ['fastai', 'fastai/models', 'fastai/models/cifar10'],
  8. version = '0.7.0',
  9. description = "The fastai deep learning and machine learning library.",
  10. author = "Jeremy Howard and contributors",
  11. author_email = "info@fast.ai",
  12. license = "Apache License 2.0",
  13. url = "https://github.com/fastai/fastai",
  14. download_url = 'https://github.com/fastai/fastai/archive/0.7.0.tar.gz',
  15. install_requires =
  16. ['bcolz', 'bleach', 'certifi', 'cycler', 'decorator', 'entrypoints', 'feather-format', 'graphviz', 'html5lib',
  17. 'ipykernel', 'ipython', 'ipython-genutils', 'ipywidgets', 'isoweek', 'jedi', 'Jinja2', 'jsonschema', 'jupyter',
  18. 'MarkupSafe', 'matplotlib', 'numpy', 'opencv-python', 'pandas',
  19. 'pandas_summary', 'pickleshare', 'Pillow', 'plotnine',
  20. 'Pygments', 'pyparsing', 'python-dateutil', 'pytz', 'PyYAML', 'pyzmq', 'scipy',
  21. 'seaborn', 'simplegeneric', 'sklearn_pandas', 'testpath', 'tensorboardX', 'torchtext', 'torchvision', '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. )