Skip to content

Commit

Permalink
🔧 (config): add config file
Browse files Browse the repository at this point in the history
  • Loading branch information
NTGNguyen committed Dec 9, 2024
1 parent f492b3b commit 4364044
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .whitesource
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"scanSettings": {
"baseBranches": []
},
"checkRunSettings": {
"vulnerableCheckRunConclusionLevel": "failure",
"displayMode": "diff",
"useMendCheckNames": true
},
"issueSettings": {
"minSeverityLevel": "LOW",
"issueType": "DEPENDENCY"
}
}
19 changes: 19 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
[project]
name = "Q-Learning_Graph-Visualization"
version = "0.1.0"
description = "A Visualization regarding Q-Learning with a simple graph"
authors = [
{name = "NTGNguyen", email = "[email protected]"},
]
dependencies = []
requires-python = ">=3.12"
readme = "README.md"
license = {text = "MIT"}

[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"


[tool.pdm]
distribution = true

0 comments on commit 4364044

Please sign in to comment.