forked from rohithpr/py-web-search
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (25 loc) · 1022 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
from distutils.core import setup
setup(
name = 'py-web-search',
packages = ['pws'],
version = '0.2.4',
description = 'A Python module to fetch and parse results from different search engines.',
author = 'Rohith PR',
author_email = '[email protected]',
url = 'https://github.com/rohithpr/py-web-search',
download_url = 'https://github.com/rohithpr/py-web-search/tarball/0.2.4',
keywords = ['web search', 'web scraping'],
classifiers = [
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Information Technology',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Internet',
'Topic :: Internet :: WWW/HTTP :: Indexing/Search',
'Topic :: Scientific/Engineering :: Interface Engine/Protocol Translator',],
)