From 5b1222d483a7a4c4cc3fa92bd65c59a371086f11 Mon Sep 17 00:00:00 2001 From: Philipp Tempel Date: Tue, 17 Dec 2019 19:33:04 +0100 Subject: [PATCH] Add missing requirement `pandas` to `install_requires` --- setup.py | 50 +++++++++++++++++++++++++------------------------- 1 file changed, 25 insertions(+), 25 deletions(-) diff --git a/setup.py b/setup.py index 7d9c6de..cbb808a 100644 --- a/setup.py +++ b/setup.py @@ -1,25 +1,25 @@ -from distutils.core import setup -from setuptools import find_packages -from elsapy.__init__ import version - -setup( - name = 'elsapy', - version = version, - description = "A Python module for use with Elsevier's APIs: Scopus, ScienceDirect, others - see https://api.elsevier.com", - long_description = "See https://github.com/ElsevierDev/elsapy for the latest information / background to this project.", - author = 'Elsevier, Inc.', - author_email = 'integrationsupport@elsevier.com', - url = 'https://github.com/ElsevierDev/elsapy', - license = 'License :: OSI Approved :: BSD License', - download_url = 'https://www.github.com/ElsevierDev/elsapy/archive/0.4.6.tar.gz', - keywords = ['elsevier api', 'sciencedirect api', 'scopus api'], # arbitrary keywords - classifiers = [ - 'Development Status :: 3 - Alpha', - 'Intended Audience :: Developers', - 'Intended Audience :: Science/Research', - 'License :: OSI Approved :: BSD License', - 'Programming Language :: Python :: 3', - ], - packages = find_packages(exclude=['contrib', 'docs', 'tests*']), - install_requires = ['requests'] -) \ No newline at end of file +from distutils.core import setup +from setuptools import find_packages +from elsapy.__init__ import version + +setup( + name = 'elsapy', + version = version, + description = "A Python module for use with Elsevier's APIs: Scopus, ScienceDirect, others - see https://api.elsevier.com", + long_description = "See https://github.com/ElsevierDev/elsapy for the latest information / background to this project.", + author = 'Elsevier, Inc.', + author_email = 'integrationsupport@elsevier.com', + url = 'https://github.com/ElsevierDev/elsapy', + license = 'License :: OSI Approved :: BSD License', + download_url = 'https://www.github.com/ElsevierDev/elsapy/archive/0.4.6.tar.gz', + keywords = ['elsevier api', 'sciencedirect api', 'scopus api'], # arbitrary keywords + classifiers = [ + 'Development Status :: 3 - Alpha', + 'Intended Audience :: Developers', + 'Intended Audience :: Science/Research', + 'License :: OSI Approved :: BSD License', + 'Programming Language :: Python :: 3', + ], + packages = find_packages(exclude=['contrib', 'docs', 'tests*']), + install_requires = ['requests', 'pandas'] +)