forked from ElsevierDev/elsapy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (31 loc) · 1.24 KB
/
setup.py
File metadata and controls
34 lines (31 loc) · 1.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
from distutils.core import setup
from setuptools import find_packages
from elsapy.__init__ import version
# TODO: use pbr for various packaging tasks.
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=["pandas", "requests", "tqdm"],
)