-
Notifications
You must be signed in to change notification settings - Fork 351
/
setup.py
43 lines (34 loc) · 1.28 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
#!/usr/bin/env python
from setuptools import setup,find_packages
exec(open('dev/fastai2/version.py').read())
with open('README.md') as readme_file: readme = readme_file.read()
requirements = """
torch>=1.2.0 torchvision matplotlib pandas requests pyyaml fastprogress>=0.1.22 pillow scikit-learn scipy spacy
""".split()
setup_requirements = ['setuptools>=36.2']
setup(
name = 'fastai2',
version = __version__,
packages = find_packages(),
include_package_data = True,
install_requires = requirements,
setup_requires = setup_requirements,
python_requires = '>=3.6',
description = "fastai v2",
long_description = readme,
long_description_content_type = 'text/markdown',
keywords = 'fastai, deep learning, machine learning',
license = "Apache Software License 2.0",
url = 'https://github.com/fastai/fastai_dev',
author = "Jeremy Howard, Sylvain Gugger, and contributors",
author_email = '[email protected]',
classifiers = [
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
zip_safe = False,
)