Skip to content

Commit

Permalink
update gitignore with pycache and protos
Browse files Browse the repository at this point in the history
  • Loading branch information
lhcavalcanti committed Aug 12, 2020
1 parent c224d0e commit a99b190
Show file tree
Hide file tree
Showing 8 changed files with 33 additions and 5 deletions.
5 changes: 2 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

.DS_Store

pb/__pycache__/
grsim_ssl/__pycache__/*
pb/*
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
# ssl-env
# ssl-en

# install
# Requirements
```bash
$ sudo apt-get install libprotobuf-dev protobuf-compiler -y
$ cd gym_ssl/grsim_ssl/pb/
$ protoc --python_out=../ *.proto
$ pip install -e .
```

Expand Down
10 changes: 10 additions & 0 deletions gym_ssl.egg-info/PKG-INFO
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
Metadata-Version: 1.0
Name: gym-ssl
Version: 0.1
Summary: UNKNOWN
Home-page: UNKNOWN
Author: UNKNOWN
Author-email: UNKNOWN
License: UNKNOWN
Description: UNKNOWN
Platform: UNKNOWN
7 changes: 7 additions & 0 deletions gym_ssl.egg-info/SOURCES.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
README.md
setup.py
gym_ssl.egg-info/PKG-INFO
gym_ssl.egg-info/SOURCES.txt
gym_ssl.egg-info/dependency_links.txt
gym_ssl.egg-info/requires.txt
gym_ssl.egg-info/top_level.txt
1 change: 1 addition & 0 deletions gym_ssl.egg-info/dependency_links.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

1 change: 1 addition & 0 deletions gym_ssl.egg-info/requires.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
gym
1 change: 1 addition & 0 deletions gym_ssl.egg-info/top_level.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

6 changes: 6 additions & 0 deletions gym_ssl/src/test.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import gym
import gym_ssl

env = gym.make('grSimSSL-v0')
env.step()
env.reset()

0 comments on commit a99b190

Please sign in to comment.