Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 37 additions & 0 deletions hci/代码/setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
import os.path

from setuptools import setup

# Store simulators path before installing
with open(os.path.join(os.path.dirname(__file__), "uitb/utils/__simulatorsdir__.py"), "w") as f:
f.write("# This file is read-only and should not be modified manually!\n"
"# To use a different output directory, set the 'simulator_folder' tag in the config file.\n\n")
f.write("SIMULATORS_DIR = " + repr(os.path.normpath(os.path.abspath('simulators'))))

setup(
name='uitb',
version='2.0.1',
author='Aleksi Ikkala',
author_email='aleksi.ikkala@gmail.com',
packages=['uitb'],
package_data={'': ['**']},
url='https://github.com/aikkala/user-in-the-box',
license='LICENSE',
description='Modeling and simulating HCI interaction tasks in MuJoCo',
long_description=open('README.md').read(),
python_requires='>=3.8',
install_requires=[
"gymnasium>=0.28",
"pygame",
"pynput",
"mujoco==2.3.5",
"imageio",
"stable_baselines3==2.2.1",
"torch",
"wandb", "tensorboard",
"numpy", "matplotlib", "scipy",
"opencv-python",
"ruamel.yaml",
"zmq"
],
)
264 changes: 264 additions & 0 deletions hci/代码/uitb.egg-info/PKG-INFO

Large diffs are not rendered by default.

893 changes: 893 additions & 0 deletions hci/代码/uitb.egg-info/SOURCES.txt

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions hci/代码/uitb.egg-info/dependency_links.txt
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

文件夹名不能用中文

Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

15 changes: 15 additions & 0 deletions hci/代码/uitb.egg-info/requires.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
gymnasium>=0.28
pygame
pynput
mujoco==2.3.5
imageio
stable_baselines3==2.2.1
torch
wandb
tensorboard
numpy
matplotlib
scipy
opencv-python
ruamel.yaml
zmq
1 change: 1 addition & 0 deletions hci/代码/uitb.egg-info/top_level.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
uitb
1 change: 1 addition & 0 deletions hci/代码/uitb/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from uitb.simulator import Simulator