-
-
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.
- Loading branch information
1 parent
9077ee8
commit 65fa22c
Showing
10 changed files
with
2,401 additions
and
2,471 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
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#! /usr/bin/env python | ||
# | ||
# Copyright (C) 2020 T. Moudiki <[email protected]> | ||
# Copyright (C) 2020-2024 T. Moudiki <[email protected]> | ||
# License: 3-clause BSD | ||
|
||
import os | ||
|
@@ -37,7 +37,7 @@ | |
MAINTAINER_EMAIL = '[email protected]' | ||
LICENSE = 'BSD3 Clause Clear' | ||
|
||
__version__ = '0.10.1' | ||
__version__ = '0.10.2' | ||
|
||
VERSION = __version__ | ||
|
||
|
@@ -144,14 +144,15 @@ def run(self): | |
|
||
def setup_package(): | ||
|
||
# get the dependencies and installs | ||
here = path.abspath(path.dirname(__file__)) | ||
|
||
with open(path.join(here, 'requirements.txt'), encoding='utf-8') as f: | ||
all_reqs = f.read().split('\n') | ||
|
||
install_all_requires = [ | ||
x.strip() for x in all_reqs if "git+" not in x | ||
"numpy", | ||
"Cython", | ||
"joblib", | ||
"pandas", | ||
"requests", | ||
"scikit-learn", | ||
"scipy", | ||
"tqdm" | ||
] | ||
|
||
if platform.system() in ('Linux', 'Darwin'): | ||
|