forked from chenkovsky/pygoogle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (26 loc) · 813 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
__author__ = 'chenkovsky'
from setuptools import setup, find_packages
import os
setup(
name='pygoogle',
version="1.0",
description="Python library to Google services (google search, google translate, google ngram)",
long_description="some useful google services for language processing.",
classifiers=[],
keywords='google search',
author='chenkovsky',
author_email='chenkov@yeah.net',
url='http://github.com/chenkovsky/pygoogle',
license='MIT',
packages=find_packages(),
entry_points={
# -*- Entry points: -*-
},
package_data={'': ['user-agents.txt', 'domains.txt']},
include_package_data=True,
zip_safe=False,
install_requires=[
# -*- Extra requirements: -*-
"requests", "beautifulsoup4", "keyring", "pycrypto"
],
)