forked from scholarly-python-package/scholarly
-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
32 lines (29 loc) · 1.16 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
import os
from setuptools import setup
def readfile(*paths):
"""Build a file path from *paths* and return the contents."""
with open(os.path.join(*paths), 'r') as f:
return f.read()
setup(
name = 'scholarly',
py_modules = ['scholarly'],
version = '0.2.1',
description = 'Simple access to Google Scholar authors and citations',
long_description=(readfile('README.rst')),
license='Unlicense',
author = 'Steven A. Cholewiak',
author_email = '[email protected]',
url = 'https://github.com/OrganicIrradiation/scholarly',
download_url = 'https://github.com/OrganicIrradiation/scholarly/tarball/v0.2',
keywords = ['Google Scholar', 'academics', 'citations'],
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules'],
install_requires=['arrow', 'beautifulsoup4', 'bibtexparser', 'requests[security]'],
test_suite="test.py"
)