-
Notifications
You must be signed in to change notification settings - Fork 3
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
9466137
commit ec5ffb6
Showing
16 changed files
with
598 additions
and
803 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,41 +1,42 @@ | ||
# scikit-datasets | ||
Scikit-learn-compatible datasets | ||
|
||
## Status | ||
[![Build Status](https://travis-ci.com/daviddiazvico/scikit-datasets.svg?branch=master)](https://travis-ci.com/daviddiazvico/scikit-datasets) | ||
[![Maintainability](https://api.codeclimate.com/v1/badges/a37c9ee152b41a0cb577/maintainability)](https://codeclimate.com/github/daviddiazvico/scikit-datasets/maintainability) | ||
[![Test Coverage](https://api.codeclimate.com/v1/badges/a37c9ee152b41a0cb577/test_coverage)](https://codeclimate.com/github/daviddiazvico/scikit-datasets/test_coverage) | ||
|
||
## Installation | ||
Available in [PyPI](https://pypi.python.org/pypi?:action=display&name=scikit-datasets) | ||
``` | ||
pip install scikit-datasets | ||
``` | ||
|
||
## Documentation | ||
Autogenerated and hosted in [GitHub Pages](https://daviddiazvico.github.io/scikit-datasets/) | ||
|
||
## Distribution | ||
Run the following command from the project home to create the distribution | ||
``` | ||
python setup.py sdist bdist_wheel | ||
``` | ||
and upload the package to [testPyPI](https://testpypi.python.org/) | ||
``` | ||
twine upload --repository-url https://test.pypi.org/legacy/ dist/* | ||
``` | ||
or [PyPI](https://pypi.python.org/) | ||
``` | ||
twine upload dist/* | ||
``` | ||
|
||
## Citation | ||
If you find scikit-datasets useful, please cite it in your publications. You can use this [BibTeX](http://www.bibtex.org/) entry: | ||
``` | ||
@misc{scikit-datasets, | ||
title={scikit-datasets}, | ||
author={Diaz-Vico, David}, | ||
year={2017}, | ||
publisher={GitHub}, | ||
howpublished={\url{https://github.com/daviddiazvico/scikit-datasets}}} | ||
# scikit-datasets | ||
Scikit-learn-compatible datasets | ||
|
||
## Status | ||
[![Build Status](https://travis-ci.com/daviddiazvico/scikit-datasets.svg?branch=master)](https://travis-ci.com/daviddiazvico/scikit-datasets) | ||
[![Maintainability](https://api.codeclimate.com/v1/badges/a37c9ee152b41a0cb577/maintainability)](https://codeclimate.com/github/daviddiazvico/scikit-datasets/maintainability) | ||
[![Test Coverage](https://api.codeclimate.com/v1/badges/a37c9ee152b41a0cb577/test_coverage)](https://codeclimate.com/github/daviddiazvico/scikit-datasets/test_coverage) | ||
[![Build Status](https://dev.azure.com/daviddiazvico0337/daviddiazvico/_apis/build/status/daviddiazvico.scikit-datasets?branchName=master)](https://dev.azure.com/daviddiazvico0337/daviddiazvico/_build/latest?definitionId=1&branchName=master) | ||
|
||
## Installation | ||
Available in [PyPI](https://pypi.python.org/pypi?:action=display&name=scikit-datasets) | ||
``` | ||
pip install scikit-datasets | ||
``` | ||
|
||
## Documentation | ||
Autogenerated and hosted in [GitHub Pages](https://daviddiazvico.github.io/scikit-datasets/) | ||
|
||
## Distribution | ||
Run the following command from the project home to create the distribution | ||
``` | ||
python setup.py sdist bdist_wheel | ||
``` | ||
and upload the package to [testPyPI](https://testpypi.python.org/) | ||
``` | ||
twine upload --repository-url https://test.pypi.org/legacy/ dist/* | ||
``` | ||
or [PyPI](https://pypi.python.org/) | ||
``` | ||
twine upload dist/* | ||
``` | ||
|
||
## Citation | ||
If you find scikit-datasets useful, please cite it in your publications. You can use this [BibTeX](http://www.bibtex.org/) entry: | ||
``` | ||
@misc{scikit-datasets, | ||
title={scikit-datasets}, | ||
author={Diaz-Vico, David}, | ||
year={2017}, | ||
publisher={GitHub}, | ||
howpublished={\url{https://github.com/daviddiazvico/scikit-datasets}}} | ||
``` |
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,31 @@ | ||
# Python package | ||
# Create and test a Python package on multiple Python versions. | ||
# Add steps that analyze code, save the dist with the build record, publish to a PyPI-compatible index, and more: | ||
# https://docs.microsoft.com/azure/devops/pipelines/languages/python | ||
|
||
trigger: | ||
- master | ||
|
||
pool: | ||
vmImage: 'ubuntu-latest' | ||
strategy: | ||
matrix: | ||
Python36: | ||
python.version: '3.6' | ||
Python37: | ||
python.version: '3.7' | ||
|
||
steps: | ||
- task: UsePythonVersion@0 | ||
inputs: | ||
versionSpec: '$(python.version)' | ||
displayName: 'Use Python $(python.version)' | ||
|
||
- script: | | ||
python -m pip install --upgrade pip | ||
displayName: 'Install dependencies' | ||
|
||
- script: | | ||
pip install pytest-azurepipelines | ||
python setup.py test | ||
displayName: 'Test' |
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 |
---|---|---|
|
@@ -9,30 +9,28 @@ | |
|
||
setup(name='scikit-datasets', | ||
packages=find_packages(), | ||
version='0.1.30', | ||
version='0.1.31', | ||
description='Scikit-learn-compatible datasets', | ||
# long_description=open('README.md', 'r').read(), | ||
author='David Diaz Vico', | ||
author_email='[email protected]', | ||
url='https://github.com/daviddiazvico/scikit-datasets', | ||
download_url='https://github.com/daviddiazvico/scikit-datasets/archive/v0.1.30.tar.gz', | ||
download_url='https://github.com/daviddiazvico/scikit-datasets/archive/v0.1.31.tar.gz', | ||
keywords=['scikit-learn'], | ||
classifiers=['Intended Audience :: Science/Research', | ||
'Topic :: Scientific/Engineering', | ||
'Programming Language :: Python', | ||
'Programming Language :: Python :: 3', | ||
'Programming Language :: Python :: 3.6'], | ||
install_requires=['scikit-learn'], | ||
'Programming Language :: Python :: 3.7'], | ||
install_requires=['numpy', 'scipy', 'scikit-learn'], | ||
extras_require={'cran': ['rdata'], | ||
'forex': ['forex_python'], | ||
'keel': ['pandas'], | ||
'keras': ['keras'], | ||
'utils.estimator': ['jsonpickle'], | ||
'utils.experiments': ['sacred'], | ||
'utils.scores': ['pandas', 'scipy', 'statsmodels'], | ||
'utils.validation': ['seaborn']}, | ||
'utils.estimator': ['jsonpickle==0.9.6'], | ||
'utils.experiments': ['sacred']}, | ||
setup_requires=['pytest-runner'], | ||
tests_require=['coverage', 'forex_python', 'jsonpickle', 'keras', | ||
'pandas', 'pytest', 'pytest-cov', 'rdata', 'sacred', | ||
'scipy', 'seaborn', 'statsmodels', 'tensorflow'], | ||
tests_require=['coverage', 'forex_python', 'jsonpickle==0.9.6', 'keras', | ||
'pandas', 'pymongo', 'pytest', 'pytest-cov', 'rdata', | ||
'sacred', 'tensorflow'], | ||
test_suite='tests') |
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
Oops, something went wrong.