forked from tensorlayer/TensorLayer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·25 lines (23 loc) · 708 Bytes
/
setup.py
File metadata and controls
executable file
·25 lines (23 loc) · 708 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
from setuptools import setup, find_packages
install_requires = [
'numpy',
# 'tensorflow', # user install it
'scipy',
'scikit-image',
'matplotlib',
]
setup(
name = "tensorlayer",
version = "1.2.8",
include_package_data=True,
author='TensorLayer Contributors',
author_email='hao.dong11@imperial.ac.uk',
url = "https://github.com/zsdonghao/tensorlayer" ,
license = "apache" ,
packages = find_packages(),
install_requires=install_requires,
# scripts=['tutorial_mnist.py'],
description = "Deep learning and Reinforcement learning library for TensorFlow",
keywords = "deep learning, reinforcement learning, tensorflow",
platform=['any'],
)