-
Notifications
You must be signed in to change notification settings - Fork 19
/
setup.py
60 lines (58 loc) · 1.95 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
54
55
56
57
58
59
60
from setuptools import setup
README = ''
with open('README.md', 'r', encoding='utf-8') as readme_file:
README = readme_file.read()
setup(
name='seo-keyword-research-tool',
description = 'Python SEO keywords suggestion tool. Google Autocomplete, Related Questions and Related Searches.',
url='https://github.com/chukhraiartur/seo-keyword-research-tool',
version='0.1.9',
license='MIT',
author='Artur Chukhrai',
author_email='chukhraiartur@gmail.com',
maintainer='Artur Chukhrai, Dmitiry Zub',
maintainer_email='chukhraiartur@gmail.com, dimitryzub@gmail.com',
long_description_content_type='text/markdown',
long_description=README,
include_package_data=True,
python_requires='>=3.8',
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS',
'Operating System :: POSIX :: Linux',
'Topic :: Internet',
'Natural Language :: English',
'Topic :: Utilities',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
keywords=[
'google scholar',
'serpapi',
'scraper',
'python',
'python google scholar',
'python google scholar api',
'web scraping',
'python web scraping',
'research',
'google-search-results',
'cli'
],
install_requires=[
'google-search-results>=2.4',
],
project_urls={
'Documentation': 'https://github.com/chukhraiartur/seo-keyword-research-tool',
'Source': 'https://github.com/chukhraiartur/seo-keyword-research-tool',
'Tracker': 'https://github.com/chukhraiartur/seo-keyword-research-tool/issues',
},
entry_points={
'console_scripts': [
'seo=SeoKeywordResearch.cli:main',
],
},
)