forked from pkrumins/xgoogle
-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
32 lines (29 loc) · 903 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
from setuptools import setup, find_packages
import sys
__version__ = '1.4'
import os
def _read(fname):
return open(os.path.join(os.path.dirname(__file__), fname), encoding='utf-8').read()
setup(
name='xgoogle',
version=__version__,
description="Python library to Google services (Google Search, Google Images, Google Videos, Google Translate, Google Real-Time)",
long_description=_read('README.md'),
classifiers=[],
keywords='google search',
author='Peteris Krumins',
author_email='[email protected]',
url='http://github.com/pkrumins/xgoogle',
license='MIT',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
entry_points={
# -*- Entry points: -*-
},
include_package_data=True,
zip_safe=False,
install_requires=[
# -*- Extra requirements: -*-
'beautifulsoup4>=4.0',
'nltk>=3.0'
],
)