Skip to content

Commit b8a8f40

Browse files
committed
Initial commit with sklearn 0.0 content
0 parents  commit b8a8f40

File tree

4 files changed

+38
-0
lines changed

4 files changed

+38
-0
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
dist/
2+
sklearn.egg-info/

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
**Note:** `sklearn` package on PyPI exists to prevent bad actors to use the
2+
name. `scikit-learn` is the actual package name and should be used with pip,
3+
e.g. for:
4+
- pip commands: `pip install scikit-learn`
5+
- pip `requirements.txt` files
6+
7+
The aim of this repo is to implement the brownout of the `sklearn` package on
8+
PyPI.

setup.cfg

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
[bdist_wheel]
2+
universal = 1
3+
4+
[egg_info]
5+
tag_build =
6+
tag_date = 0
7+
tag_svn_revision = 0
8+

setup.py

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# encoding: utf8
2+
3+
from setuptools import setup
4+
5+
6+
setup(
7+
author='UNKNOWN',
8+
author_email="UNKNOWN\nblas_opt_info:\nblas_mkl_info:\n FOUND:\n libraries = ['mkl_intel_lp64', 'mkl_intel_thread', 'mkl_core', 'iomp5', 'pthread']\n library_dirs = ['/Users/filo/anaconda/lib']\n define_macros = [('SCIPY_MKL_H', None)]\n include_dirs = ['/Users/filo/anaconda/include']\n\n FOUND:\n libraries = ['mkl_intel_lp64', 'mkl_intel_thread', 'mkl_core', 'iomp5', 'pthread']\n library_dirs = ['/Users/filo/anaconda/lib']\n define_macros = [('SCIPY_MKL_H', None)]\n include_dirs = ['/Users/filo/anaconda/include']\n\nUNKNOWN",
9+
description='A set of python modules for machine learning and data mining',
10+
install_requires=['scikit-learn'],
11+
long_description='''Use `scikit-learn <https://pypi.python.org/pypi/scikit-learn/>`_ instead.''',
12+
maintainer='UNKNOWN',
13+
maintainer_email="UNKNOWN\nblas_opt_info:\nblas_mkl_info:\n FOUND:\n libraries = ['mkl_intel_lp64', 'mkl_intel_thread', 'mkl_core', 'iomp5', 'pthread']\n library_dirs = ['/Users/filo/anaconda/lib']\n define_macros = [('SCIPY_MKL_H', None)]\n include_dirs = ['/Users/filo/anaconda/include']\n\n FOUND:\n libraries = ['mkl_intel_lp64', 'mkl_intel_thread', 'mkl_core', 'iomp5', 'pthread']\n library_dirs = ['/Users/filo/anaconda/lib']\n define_macros = [('SCIPY_MKL_H', None)]\n include_dirs = ['/Users/filo/anaconda/include']\n\nUNKNOWN",
14+
name='sklearn',
15+
platforms=['all'],
16+
py_modules=['wheel-platform-tag-is-broken-on-empty-wheels-see-issue-141'],
17+
url='https://pypi.python.org/pypi/scikit-learn/',
18+
version="0.0",
19+
zip_safe=False,
20+
)

0 commit comments

Comments
 (0)