-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
migrate rest of the code from gitlab (#4)
Co-authored-by: Mustafa Kerem Kurban <[email protected]>
- Loading branch information
1 parent
7f40d77
commit bc935b1
Showing
64 changed files
with
7,623 additions
and
37 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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
[run] | ||
branch = True | ||
source = src | ||
|
||
[report] | ||
omit = | ||
*/tests/* | ||
*/__init__.py |
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,22 @@ | ||
[flake8] | ||
docstring-convention = numpy | ||
max-line-length = 88 | ||
ignore = | ||
# slice notation whitespace, invalid | ||
E203 | ||
# import at top, too many circular import fixes | ||
E402 | ||
# line length, handled by bugbear B950 | ||
E501 | ||
# bare except, handled by bugbear B001 | ||
E722 | ||
# bin op line break, invalid | ||
W503 | ||
# section name should end with a newline | ||
D406 | ||
|
||
|
||
per-file-ignores = | ||
app/app_tests/*:D | ||
tests/*:D | ||
app/main.py:D301 |
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# Changelog | ||
|
||
## [Unreleased] | ||
|
||
### Added | ||
|
||
- Migrated the rest of the citation graph code from gitlab | ||
|
||
### Modified | ||
|
||
- **Configuration** | ||
- `pyproject.toml`: Updated project configuration. | ||
|
||
- **Schemas** | ||
- `src/citations/schemas.py`: Updated schema definitions. |
Oops, something went wrong.