mirror of
https://github.com/DOI-DO/j40-cejst-2.git
synced 2025-09-29 20:13:19 -07:00
Score F, testing methodology (#510)
* fixing dependency issue * fixing more dependencies * including fraction of state AMI * wip * nitpick whitespace * etl working now * wip on scoring * fix rename error * reducing metrics * fixing score f * fixing readme * adding dependency * passing tests; * linting/black * removing unnecessary sample * fixing error * adding verify flag on etl/base Co-authored-by: Jorge Escobar <jorge.e.escobar@omb.eop.gov>
This commit is contained in:
parent
043ed983ea
commit
65ceb7900f
23 changed files with 557 additions and 153 deletions
|
@ -12,6 +12,7 @@ geopandas = "^0.9.0"
|
|||
ipython = "^7.24.1"
|
||||
jupyter = "^1.0.0"
|
||||
jupyter-contrib-nbextensions = "^0.5.1"
|
||||
matplotlib = "^3.4.2"
|
||||
numpy = "^1.21.0"
|
||||
pandas = "^1.2.5"
|
||||
python = "^3.7.1"
|
||||
|
@ -61,6 +62,7 @@ disable = [
|
|||
"W0613", # Disables unused argument
|
||||
"C0116", # Disables missing function or method docstring
|
||||
"C0115", # Disables missing class docstring
|
||||
"R0915", # Disables too many statements (score generation transform)
|
||||
]
|
||||
|
||||
[tool.pylint.FORMAT]
|
||||
|
@ -73,6 +75,9 @@ ignore-docstrings = "yes"
|
|||
ignore-imports = "yes"
|
||||
min-similarity-lines = 4
|
||||
|
||||
[tool.black]
|
||||
line-length = 80
|
||||
|
||||
[tool.liccheck]
|
||||
# Authorized and unauthorized licenses in LOWER CASE
|
||||
authorized_licenses = [
|
||||
|
@ -102,6 +107,7 @@ authorized_licenses = [
|
|||
"python software foundation",
|
||||
"zpl 2.1",
|
||||
"gpl v3",
|
||||
"historical permission notice and disclaimer (hpnd)",
|
||||
]
|
||||
|
||||
[tool.poetry.scripts]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue