Skip to content

Commit

Permalink
Maintainance misc
Browse files Browse the repository at this point in the history
- Add Pipfile to declare python chess dependency
- Update README for `pipenv`
- Improve gitignore for vscode
- Commit a recommended vscode setting.
  • Loading branch information
isaacl committed Oct 3, 2024
1 parent d0833f5 commit ea0fc5c
Show file tree
Hide file tree
Showing 5 changed files with 59 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,11 @@ target
# docker sbt
/?

# VS Code workspace files
# VS Code
*.code-workspace
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
!.vscode/*.code-snippets
5 changes: 5 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"files.watcherExclude": {
"**/target": true
}
}
12 changes: 12 additions & 0 deletions Pipfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"

[packages]

[dev-packages]
chess = "*"

[requires]
python_version = "3.12"
30 changes: 30 additions & 0 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,3 +42,8 @@ To run benchmarks for a specific class:
To run [scalafmt](https://scalameta.org/scalafmt/docs/installation.html) and [scalafix](https://scalacenter.github.io/scalafix):

sbt prepare


Install (python)
-------
For python code, [install pipenv](https://pipenv.pypa.io/en/latest/installation.html#installing-pipenv), and run `$ pipenv install` from project root.

0 comments on commit ea0fc5c

Please sign in to comment.