-
Notifications
You must be signed in to change notification settings - Fork 72
/
setup.py
35 lines (29 loc) · 906 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
33
34
35
#!/usr/bin/env python
from setuptools import setup
meta = {}
exec(open('./gscholar/version.py').read(), meta)
meta['long_description'] = open('./README.md').read()
setup(
name='gscholar',
version=meta["__VERSION__"],
description='Python library to query Google Scholar.',
long_description=meta['long_description'],
long_description_content_type='text/markdown',
keywords='google scholar cli',
author='Bastian Venthur',
author_email='[email protected]',
url='https://github.com/venthur/gscholar',
project_urls={
'Source': 'https://github.com/venthur/gscholar',
'Changelog':
'https://github.com/venthur/gscholar/blob/master/CHANGELOG.md',
},
python_requires='>=3.7',
packages=['gscholar'],
entry_points={
'console_scripts': [
'gscholar = gscholar.__main__:main'
]
},
license='MIT',
)