-
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.
### Summary of Changes * Remove some outdated linter configs * Move linter config to `pyproject.toml` where possible * Move `pyproject.toml` and `poetry.lock` to top-level to be able to reuse `README.md` in `docs/` * Specify dependencies to build documentation using `poetry`
- Loading branch information
1 parent
d72a529
commit 4adbf5e
Showing
210 changed files
with
3,170 additions
and
1,176 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
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
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
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
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
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
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 |
---|---|---|
|
@@ -30,6 +30,10 @@ venv/ | |
.pytest_cache/ | ||
htmlcov/ | ||
.coverage | ||
coverage.xml | ||
|
||
# mkdocs | ||
/site/ | ||
|
||
# MegaLinter | ||
report/ | ||
|
This file was deleted.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -4,12 +4,12 @@ version = "0.2.0" | |
description = "A user-friendly library for Data Science in Python." | ||
authors = ["Lars Reimann <[email protected]>"] | ||
license = "MIT" | ||
readme = "README.md" | ||
readme = "docs/README.md" | ||
repository = "https://github.com/Safe-DS/Stdlib" | ||
documentation = "https://safe-ds-stdlib.readthedocs.io" | ||
keywords = ["data science", "machine learning", "usability", "learnability"] | ||
packages = [ | ||
{ include = "safeds" }, | ||
{ include = "safeds", from = "src"}, | ||
] | ||
|
||
[tool.poetry.dependencies] | ||
|
@@ -20,10 +20,27 @@ seaborn = "^0.12.2" | |
ipython = "^8.8.0" | ||
matplotlib = "^3.6.3" | ||
|
||
[tool.poetry.dev-dependencies] | ||
[tool.poetry.group.dev.dependencies] | ||
pytest = "^7.2.1" | ||
pytest-cov = "^4.0.0" | ||
|
||
[tool.poetry.group.docs.dependencies] | ||
jupyter = "^1.0.0" | ||
mkdocs = "^1.4.2" | ||
mkdocstrings = "^0.20.0" | ||
mkdocstrings-python = "^0.8.3" | ||
mkdocs-autorefs = "^0.4.1" | ||
mkdocs-gen-files = "^0.4.0" | ||
mkdocs-glightbox = "^0.3.1" | ||
mkdocs-literate-nav = "^0.6.0" | ||
mkdocs-material = "^9.1.2" | ||
mkdocs-section-index = "^0.3.5" | ||
|
||
[build-system] | ||
requires = ["poetry-core>=1.0.0"] | ||
build-backend = "poetry.core.masonry.api" | ||
|
||
[tool.mypy] | ||
disallow_incomplete_defs = true | ||
disallow_untyped_defs = true | ||
ignore_missing_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
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
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.