-
Notifications
You must be signed in to change notification settings - Fork 100
/
setup.py
30 lines (27 loc) · 822 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
from setuptools import setup, find_packages
import sys
__version__ = '1.3'
import os
def _read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='xgoogle',
version=__version__,
description="Python library to Google services (google search, google sets, google translate, sponsored links)",
long_description=_read('readme.txt'),
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: -*-
],
)