-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
45 lines (41 loc) · 1.82 KB
/
setup.py
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
34
35
36
37
38
39
40
41
42
43
44
# Copyright 2018 reinforce.io. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ==============================================================================
from setuptools import setup, find_packages
from tensorforce_client import __version__ as version
setup(
name='tensorforce-client',
version=version,
packages=find_packages(exclude=['docs', 'examples', 'docker']),
#package_dir={'tensorforce_client': 'tensorforce_client'},
package_data={'tensorforce_client': ['configs/*']},
url='https://github.com/reinforceio/tensorforce-client',
license='Apache 2.0',
author='Reinforce.io & ducandu research',
author_email='sven.mika@ducandu.com',
description='A client to run experiments in the cloud using the TensorForce reinforcement learning library.',
keywords='Reinforcement Learning, Cloud based RL, TensorForce, TensorFlow, Unreal Engine 4, '
'Cloud Machine Learning with GPUs',
entry_points={
'console_scripts': [
'tfcli = tensorforce_client.tfcli:main'
]
},
download_url='https://github.com/reinforceio/tensorforce-client/archive/{}.tar.gz'.format(version),
install_requires=["jinja2", "six"],
#setup_requires=[],
extras_require={
"tf": ["tensorflow>=1.4.0"] # if tensorboard needed to look at summaries locally
}
)