forked from gabrieleangeletti/Deep-Learning-TensorFlow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
17 lines (16 loc) · 649 Bytes
/
setup.py
File metadata and controls
17 lines (16 loc) · 649 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
from setuptools import setup, find_packages
setup(
name='yadlt',
version='0.0.4',
url='https://github.com/blackecho/Deep-Learning-Tensorflow',
download_url='https://github.com/blackecho/Deep-Learning-TensorFlow/tarball/0.0.2rc3',
author='Gabriele Angeletti',
author_email='angeletti.gabriele@gmail.com',
description='Implementation of various deep learning algorithms using Tensorflow. Class interfaces is sklearn-like.',
packages=find_packages(exclude=['tests', 'data', 'logs', 'stored_models']),
zip_safe=False,
include_package_data=True,
platforms='any',
license='MIT',
install_requires=[],
)