forked from fraunhofer-iais/dlplatform
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (22 loc) · 1.05 KB
/
setup.py
File metadata and controls
23 lines (22 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup
setup(name='DLplatform',
version = '0.0.6',
description = 'A framework to perform large scale experiments with distributed learners',
url = '',
author = 'Kamp, Adilova',
author_email = 'info@michaelkamp.org',
license = 'Apache2.0',
python_requires = '>3.5',
packages = ['DLplatform',
'DLplatform/aggregating',
'DLplatform/communicating',
'DLplatform/dataprovisioning',
'DLplatform/learning',
'DLplatform/learning/batch',
'DLplatform/learning/deeplearning',
'DLplatform/learning/factories',
'DLplatform/learning/online',
'DLplatform/parameters',
'DLplatform/synchronizing',
'DLplatform/stopping'],
zip_safe = False)