forked from scholarly-python-package/scholarly
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
31 lines (27 loc) · 1.04 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
import os
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name = 'scholarly',
version = '0.3',
author = 'Steven A. Cholewiak',
author_email = '[email protected]',
description = 'Simple access to Google Scholar authors and citations',
long_description=long_description,
long_description_content_type="text/markdown",
license='Unlicense',
url = 'https://github.com/OrganicIrradiation/scholarly',
packages=setuptools.find_packages(),
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"
)