-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
29 lines (28 loc) · 979 Bytes
/
setup.py
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
from setuptools import setup, find_packages
setup(
name="article_dataset_builder",
version="0.2.6",
author="Patrice Lopez",
author_email="patrice.lopez@science-miner.com",
description="Open Access scholar PDF harvester, metadata aggregator and full-text ingester",
long_description=open("Readme.md", encoding='utf-8').read(),
long_description_content_type="text/markdown",
url="https://github.com/kermitt2/article_dataset_builder",
packages=find_packages(exclude=['test', '*.test', '*.test.*']),
include_package_data=True,
python_requires='>=3.5',
install_requires=[
'boto3',
'python-magic==0.4.15',
'lmdb==1.4.1',
'tqdm==4.21',
'requests',
'cloudscraper==1.2.69',
'beautifulsoup4==4.11.2'
],
classifiers=[
"Programming Language :: Python :: 3.5",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX",
],
)