-
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
d27b666
commit 7d4962a
Showing
7 changed files
with
49 additions
and
46 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,30 +1,31 @@ | ||
import sys | ||
""" | ||
@author: David Diaz Vico | ||
@license: MIT | ||
""" | ||
|
||
from setuptools import find_packages, setup | ||
|
||
needs_pytest = {'pytest', 'test', 'ptr'}.intersection(sys.argv) | ||
pytest_runner = ['pytest-runner'] if needs_pytest else [] | ||
setup(name='scikit-datasets', | ||
packages=find_packages(), | ||
version='0.1.17', | ||
version='0.1.18', | ||
description='Scikit-learn-compatible datasets', | ||
long_description=open('README.md', 'r').read(), | ||
author='David Diaz Vico', | ||
author_email='david.diaz.vico@outlook.com', | ||
url='https://github.com/daviddiazvico/scikit-datasets', | ||
download_url='https://github.com/daviddiazvico/scikit-datasets/archive/v0.1.17.tar.gz', | ||
download_url='https://github.com/daviddiazvico/scikit-datasets/archive/v0.1.18.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', | ||
'Programming Language :: Python :: 3.7'], | ||
'Programming Language :: Python :: 3.6'], | ||
install_requires=['scikit-learn'], | ||
extras_require={'cran': ['rdata'], | ||
'forex': ['forex_python'], | ||
'keel': ['pandas'], | ||
'keras': ['keras']}, | ||
setup_requires=pytest_runner, | ||
tests_require=['pytest-cov'], | ||
test_suite='tests', | ||
) | ||
setup_requires=['pytest-runner'], | ||
tests_require=['coverage', 'forex_python', 'keras', 'pandas', 'pytest', | ||
'pytest-cov', 'rdata', '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
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
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