-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (30 loc) · 847 Bytes
/
setup.py
File metadata and controls
33 lines (30 loc) · 847 Bytes
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
#!/usr/bin/env python
######################################################################
# Copyright (c) 2015, Max Planck Society
# \file setup.py
# \author Franziska Meier
# \author Daniel Kappler
#######################################################################
from setuptools import setup
__author__ = 'Franziska Meier, Daniel Kappler'
__copyright__ = '2015, Max Planck Society'
setup(
name='meta_learning',
author='Franziska Meier, Daniel Kappler',
author_email='franzi.meier@gmail.com, daniel.kappler@gmail.com',
version=1.0,
packages=['meta_learning'],
package_dir={'meta_learning': ''},
install_requires=[
'pyyaml',
'ipdb',
'jinja2',
'easydict',
'jupyter',
'h5py',
'jinja2',
'progressbar2',
'dill'
],
zip_safe=False
)