-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix dependences versions. Remove annotation tool
- Loading branch information
Showing
28 changed files
with
17 additions
and
4,015 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,2 @@ | ||
# ignore long license for ruff | ||
ignore = ["E501", "E741"] | ||
exclude = ["tsod/active_learning/"] |
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 |
---|---|---|
|
@@ -6,15 +6,22 @@ | |
setuptools.setup( | ||
name="tsod", | ||
version="0.2.0", | ||
install_requires=["pandas>=1.0.0", "numba", "joblib"], | ||
install_requires=[ | ||
"pandas==2.1.*", | ||
"joblib==1.3.*", | ||
"numba==0.57.*", | ||
], | ||
extras_require={ | ||
"dev": [ | ||
"pytest>=6.2.1", | ||
"pytest==6.2.*", | ||
"pytest-cov==4.1.*", | ||
"sphinx==4.5.0", # pin version to work with sphinx-book-theme, | ||
"sphinx-book-theme", | ||
"sphinx-book-theme==1.0.*", | ||
], | ||
"ml": [ | ||
"pyod==1.1.*", | ||
"tensorflow==2.15.*" | ||
], | ||
"ml": ["pyod", "tensorflow"], | ||
"test": ["pytest>=6.2.1"], | ||
}, | ||
author="Henrik Andersson", | ||
author_email="[email protected]", | ||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.