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) · 722 Bytes
/
setup.py
File metadata and controls
executable file
·25 lines (23 loc) · 722 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.6.6",
include_package_data=True,
author='TensorLayer Contributors',
author_email='[email protected]',
url = "https://github.com/zsdonghao/tensorlayer" ,
license = "apache" ,
packages = find_packages(),
install_requires=install_requires,
# scripts=['tutorial_mnist.py'],
description = "Reinforcement Learning and Deep Learning Library for Researcher and Engineer.",
keywords = "deep learning, reinforcement learning, tensorflow",
platform=['any'],
)