-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
32 lines (28 loc) · 952 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
30
31
32
#!/usr/bin/env python
from setuptools import setup
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(name='google-scholar-scraper',
version='0.2',
description='Python library for scraping Google Scholar.',
long_description=long_description,
author='Adeel Khan',
author_email='[email protected]',
license='GPL',
url='http://github.com/adeel/google-scholar-scraper',
package_dir={'': 'src'},
py_modules=['gsscraper'],
entry_points={
'console_scripts': [
'gsscraper=gsscraper:main'
]
},
install_requires=['requests', 'bibtexparser'],
dependency_links=[
'git+http://[email protected]/sciunto/python-bibtexparser.git#egg=bibtexparser-0.5.5git'
],
keywords='references citations bibliography'
)