-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (27 loc) · 1 KB
/
setup.py
File metadata and controls
30 lines (27 loc) · 1 KB
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
#!/usr/bin/env python
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="Ddip-philtrade",
version="0.1.1",
author='Phillip K.S. Chu',
author_email='philtrade@winphil.net',
url='https://github.com/philtrade/Ddip',
description="Harness Fastai Distributed Data Parallel (DDP) training in iPython/Jupyter notebook",
long_description=long_description,
long_description_content_type="text/markdown",
packages=['Ddip'],
install_requires=['fastai==1.*', 'torch',
'ipyparallel!=6.2.5', # ipyparallel 6.2.5 has a bug: https://github.com/ipython/ipyparallel/issues/408
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache License 2.0",
"Operating System :: Ubuntu",
],
python_requires='>=3.6',
license="Apache License 2.0",
zip_safe=False,
keywords=['ipyparallel', 'fastai', 'distributed data parallel', 'jupyter', 'notebook', 'magic'],
)