-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 817 Bytes
/
Copy pathsetup.py
File metadata and controls
24 lines (22 loc) · 817 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from setuptools import setup
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(name='search_engine_scraper',
version='0.4',
description='A module to scrape popular search engines',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/deepsidh9/Search-Engine-Scraper',
author='Deep Singh Dhillon',
author_email='deep.barca@gmail.com',
license='MIT',
packages=['search_engine_scraper'],
install_requires=[
'requests',
'lxml'
],
include_package_data=True,
package_data={'': ['search_engine_scraper/*.txt']},
zip_safe=False)