forked from janruh/scholarly
-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
53 lines (49 loc) · 1.47 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
import os
import setuptools
def get_description():
with open("README.md", "r") as fh:
return fh.read()
setuptools.setup(
name = 'scholarly',
version = '0.3.0',
author = 'Victor N. Silva',
author_email = 'noreply@noreply.com',
description = 'Scrape Google Scholar!',
long_description=get_description(),
long_description_content_type="text/markdown",
license='Unlicense',
url = 'https://github.com/silvavn/scholarly',
packages=setuptools.find_packages(),
data_files=[('scholarly', ['scholarly/templates/urls.json'])],
download_url = 'https://github.com/silvavn/scholarly/tarball/v0.3.0',
keywords = ['Google Scholar', 'academics', 'citations', 'selenium', 'webscrapping'],
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Researchers',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules'],
install_requires=['arrow',
'beautifulsoup4',
'bibtexparser',
'bs4',
'certifi',
'chardet',
'fake-useragent',
'future',
'idna',
'numpy',
'pandas',
'pyparsing',
'python-dateutil',
'pytz',
'requests',
'selenium',
'six',
'soupsieve',
'stem',
'urllib3',
'wincertstore'],
test_suite="test.py"
)