-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Issue #78: Docstring formatting rules
- Loading branch information
Showing
19 changed files
with
724 additions
and
387 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
ignore-init-module-imports = true | ||
ignore-init-module-imports = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,37 @@ | ||
[build-system] | ||
requires = ["setuptools", "setuptools-scm"] | ||
build-backend = "setuptools.build_meta" | ||
requires = ["setuptools", "setuptools-scm"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "bsk_rl" | ||
version = "0.0.0" | ||
authors = [ | ||
{name = "Adam Herrmann", email = "adam.herrmann@colorado.edu"}, | ||
{name = "Mark Stephenson", email = "mark.a.stephenson@colorado.edu"}, | ||
] | ||
description = "RL environments and tools for spacecraft autonomy research, built on Basilisk. Developed by the AVS Lab." | ||
readme = "README.md" | ||
requires-python = ">=3.9.0" | ||
license = {text = "MIT"} | ||
dependencies = [ | ||
"deap==1.3.3", | ||
"Deprecated", | ||
"gymnasium", | ||
"matplotlib", | ||
"numpy", | ||
"pandas", | ||
"pettingzoo", | ||
"pytest", | ||
"pytest-cov", | ||
"pytest-repeat", | ||
"requests", | ||
"scikit-learn", | ||
"scipy", | ||
"stable-baselines3", | ||
"tensorflow", | ||
"torch", | ||
] | ||
name = "bsk_rl" | ||
version = "0.0.0" | ||
authors = [ | ||
{ name = "Adam Herrmann", email = "adam.herrmann@colorado.edu" }, | ||
{ name = "Mark Stephenson", email = "mark.a.stephenson@colorado.edu" }, | ||
] | ||
description = "RL environments and tools for spacecraft autonomy research, built on Basilisk. Developed by the AVS Lab." | ||
readme = "README.md" | ||
requires-python = ">=3.9.0" | ||
license = { text = "MIT" } | ||
dependencies = [ | ||
"deap==1.3.3", | ||
"Deprecated", | ||
"gymnasium", | ||
"matplotlib", | ||
"numpy", | ||
"pandas", | ||
"pettingzoo", | ||
"pytest", | ||
"pytest-cov", | ||
"pytest-repeat", | ||
"requests", | ||
"ruff>=0.1.9", | ||
"scikit-learn", | ||
"scipy", | ||
"stable-baselines3", | ||
"tensorflow", | ||
"torch", | ||
] | ||
|
||
[project.scripts] | ||
finish_install = "bsk_rl.finish_install:pck_install" | ||
finish_install = "bsk_rl.finish_install:pck_install" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
extend-safe-fixes = ["D"] | ||
|
||
[lint.pydocstyle] | ||
convention = "google" | ||
|
||
[lint] | ||
select = ["D", "W", "D401", "D404"] | ||
ignore = ["D104"] | ||
|
||
[lint.pycodestyle] | ||
max-doc-length = 88 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.