forked from NLPatVCU/PaperScraper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (34 loc) · 1.17 KB
/
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
30
31
32
33
34
35
36
37
from setuptools import setup
from paperscraper import __version__, __authors__
def readme():
with open('README.md') as f:
return f.read()
setup(
name='paperscraper',
version=__version__,
license='GNU GENERAL PUBLIC LICENSE',
description='A web scraping tool to extract the text of scientific papers from journals accessible over university networks.',
long_description=readme(),
packages=['paperscraper'],
url='https://github.com/NanoNLP/PaperScraper',
author=__authors__,
author_email='[email protected]',
keywords='paperscraper scientific journal web scraper pubmed science-direct acs webscraper',
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Programming Language :: Python :: 3.5',
'Natural Language :: English',
'Topic :: Text Processing :: Linguistic',
'Intended Audience :: Science/Research'
],
install_requires=[
'selenium',
'beautifulsoup4',
'requests'
],
test_suite='nose.collector',
tests_require=['nose'],
include_package_data=True,
zip_safe=False
)