Skip to content

Commit

Permalink
Week-1 progress
Browse files Browse the repository at this point in the history
  • Loading branch information
Ctri-The-Third committed Jul 14, 2023
1 parent f524e7b commit be3960c
Show file tree
Hide file tree
Showing 22 changed files with 1,939 additions and 513 deletions.
3 changes: 2 additions & 1 deletion .pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ disable=raw-checker-failed,
useless-suppression,
deprecated-pragma,
use-symbolic-message-instead,
import-error
import-error,
no-name-in-module

# A comma-separated list of package or module names from where C extensions may
# be loaded. Extensions are loading into the active Python interpreter and may
Expand Down
22 changes: 22 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,27 @@
"console": "integratedTerminal",
"justMyCode": true
},
{
"name": "Python: procure-quest",
"type": "python",
"request": "launch",
"program": "procure-quest.py",
"args": [
"CTRI"
],
"console": "integratedTerminal",
"justMyCode": true
},
{
"name": "Python: procure-quest (Harb_alpha)",
"type": "python",
"request": "launch",
"program": "procure-quest.py",
"args": [
"O2O"
],
"console": "integratedTerminal",
"justMyCode": true
}
]
}
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,17 @@ Eventually will be used to build an interactive gameplay UI built on top of the
- [Overview](#Overview)
- [Environment setup](#Setup)
- [Deployment](#Deploy)


## Overview


## Setup

```bash
# build
py setup.py bdist_wheel

# install
py -m pip install dist/spacetraders-0.1.0-py3-none-any.whl
```
Loading

0 comments on commit be3960c

Please sign in to comment.