-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
43 lines (42 loc) · 1.3 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
from distutils.core import setup
setup(
name="learning_table_tennis_from_scratch",
version="1.0",
description="hysr",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
],
keywords="hysr reinforcement_learning table_tennis",
url="https://github.com/intelligent-soft-robots/learning_table_tennis_from_scratch",
author="Vincent Berenz",
author_email="[email protected]",
license="MIT",
packages=["learning_table_tennis_from_scratch"],
# install_requires=['tensorflow==1.15','gym'],
zip_safe=True,
data_files=[
(
"learning_table_tennis_from_scratch_config/",
[
"config/hysr_one_ball_default.json",
"config/ppo_default.json",
"config/reward_default.json",
],
)
],
scripts=[
"bin/hysr_one_ball_random",
"bin/hysr_one_ball_swing",
"bin/hysr_one_ball_rl",
"bin/hysr_one_ball_reset",
"bin/hysr_one_ball_reward_tests",
"bin/hysr_start_robots",
"bin/hysr_visualization",
"bin/hysr_step_frequencies",
"bin/hysr_episode_frequencies",
"bin/hysr_display_extra_balls",
"bin/hysr_extra_balls",
"bin/hysr_stop",
],
)