forked from neurodata/scikit-learn
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(setup): update scikit-learn to scikit-lexicographical-trees …
…[cd build]
- Loading branch information
1 parent
9f4b78f
commit 84d27aa
Showing
3 changed files
with
48 additions
and
17 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
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,10 +1,10 @@ | ||
[project] | ||
name = "scikit-learn" | ||
version = "1.6.dev0" | ||
name = "scikit-lexicographical-trees" | ||
version = "0.0.1" | ||
description = "A set of python modules for machine learning and data mining" | ||
readme = "README.rst" | ||
maintainers = [ | ||
{name = "scikit-learn developers", email="[email protected]"}, | ||
{name = "scikit-longitudinal-developpers", email="[email protected]"}, | ||
] | ||
dependencies = [ | ||
"numpy>=1.19.5", | ||
|
@@ -36,11 +36,11 @@ classifiers=[ | |
] | ||
|
||
[project.urls] | ||
homepage = "https://scikit-learn.org" | ||
source = "https://github.com/scikit-learn/scikit-learn" | ||
download = "https://pypi.org/project/scikit-learn/#files" | ||
tracker = "https://github.com/scikit-learn/scikit-learn/issues" | ||
"release notes" = "https://scikit-learn.org/stable/whats_new" | ||
homepage = "https://simonprovost.github.io/scikit-longitudinal/" | ||
source = "https://github.com/simonprovost/scikit-lexicographical-trees" | ||
download = "https://pypi.org/project/scikit-lexicographical-trees/#files" | ||
tracker = "https://github.com/simonprovost/scikit-lexicographical-trees/issues" | ||
"release notes" = "https://github.com/simonprovost/scikit-longitudinal/releases" | ||
|
||
[project.optional-dependencies] | ||
build = ["numpy>=1.19.5", "scipy>=1.6.0", "cython>=3.0.10", "meson-python>=0.16.0"] | ||
|
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 |
---|---|---|
|
@@ -28,21 +28,22 @@ | |
builtins.__SKLEARN_SETUP__ = True | ||
|
||
|
||
DISTNAME = "scikit-lexicographical_trees" | ||
DISTNAME = "scikit-lexicographical-trees" | ||
DESCRIPTION = "A set of python modules for machine learning and data mining" | ||
with open("README.rst") as f: | ||
LONG_DESCRIPTION = f.read() | ||
MAINTAINER = "scikit-learn developers" | ||
MAINTAINER_EMAIL = "[email protected]" | ||
URL = "https://scikit-learn.org" | ||
DOWNLOAD_URL = "https://pypi.org/project/scikit-learn/#files" | ||
MAINTAINER = "Simon Provost" | ||
MAINTAINER_EMAIL = "[email protected]" | ||
URL = "https://simonprovost.github.io/scikit-longitudinal/" | ||
DOWNLOAD_URL = "https://pypi.org/project/scikit-lexicographical-trees/#files" | ||
LICENSE = "new BSD" | ||
PROJECT_URLS = { | ||
"Bug Tracker": "https://github.com/scikit-learn/scikit-learn/issues", | ||
"Documentation": "https://scikit-learn.org/stable/documentation.html", | ||
"Source Code": "https://github.com/scikit-learn/scikit-learn", | ||
"Bug Tracker": "https://github.com/simonprovost/scikit-lexicographical-trees/issues", | ||
"Documentation": "https://simonprovost.github.io/scikit-longitudinal/", | ||
"Source Code": "https://github.com/simonprovost/scikit-lexicographical-trees", | ||
} | ||
|
||
|
||
# We can actually import a restricted version of sklearn that | ||
# does not need the compiled code | ||
import sklearn # noqa | ||
|
@@ -51,7 +52,8 @@ | |
from sklearn.externals._packaging.version import parse as parse_version # noqa | ||
|
||
|
||
VERSION = sklearn.__version__ | ||
# VERSION = sklearn.__version__ | ||
VERSION = "0.0.1" | ||
|
||
# Custom clean command to remove build artifacts | ||
|
||
|