Skip to content

Update readme #893

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jul 21, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions ci/azure/azure_template_posix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ jobs:
if [[ ${COVERAGE} == "true" ]]; then
export COVERAGE_OPTS="--cov-config .coveragerc --cov=pandas_datareader --cov-report xml:coverage.xml --cov-report term"
fi
echo pytest -m "${PYTEST_PATTERN}" --junitxml=junit/test-results.xml -n auto --durations=25 ${COVERAGE_OPTS} pandas_datareader/tests
pytest -m "${PYTEST_PATTERN}" --junitxml=junit/test-results.xml -n auto --durations=25 ${COVERAGE_OPTS} pandas_datareader/tests
echo pytest -m "${PYTEST_PATTERN}" --junitxml=junit/test-results.xml -n 2 --durations=25 ${COVERAGE_OPTS} pandas_datareader/tests
pytest -m "${PYTEST_PATTERN}" --junitxml=junit/test-results.xml -n 2 --durations=25 ${COVERAGE_OPTS} pandas_datareader/tests
displayName: 'Run tests'

- task: PublishTestResults@2
Expand Down
1 change: 1 addition & 0 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,6 @@ codecov
coveralls
flake8
pytest
pytest-xdist
pytest-cov
wrapt
29 changes: 29 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,3 +1,32 @@
[metadata]
name = pandas-datareader
description = Pandas-compatible data readers. Formerly a component of pandas.
long_description = file: README.md
long_description_content_type = text/markdown
url = https://pandas.pydata.org
author = The PyData Development Team
author_email = [email protected]
license = BSD-3-Clause
license_file = LICENSE.md
platforms = any
classifiers =
Development Status :: 5 - Production/Stable
Environment :: Console
Intended Audience :: Science/Research
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Topic :: Scientific/Engineering
project_urls =
Bug Tracker = https://github.com/pydata/pandas-datareader/issues
Documentation = http://pydata.github.io/pandas-datareader
Source Code = https://github.com/pydata/pandas-datareader

[versioneer]
VCS = git
style = pep440
Expand Down
34 changes: 0 additions & 34 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,48 +5,14 @@

import versioneer

NAME = "pandas-datareader"


def readme():
with open("README.md") as f:
return f.read()


install_requires = []
with open("./requirements.txt") as f:
install_requires = f.read().splitlines()
with open("./requirements-dev.txt") as f:
tests_require = f.read().splitlines()

setup(
name=NAME,
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description="Data readers extracted from the pandas codebase,"
"should be compatible with recent pandas versions",
long_description=readme(),
license="BSD License",
author="The PyData Development Team",
author_email="[email protected]",
url="https://github.com/pydata/pandas-datareader",
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Scientific/Engineering",
],
keywords="data",
install_requires=install_requires,
packages=find_packages(exclude=["contrib", "docs", "tests*"]),
test_suite="tests",
tests_require=tests_require,
zip_safe=False,
python_requires=">=3.6",
)