forked from jab/galerts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
49 lines (44 loc) · 1.51 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
from setuptools import setup, find_packages
version = '0.2.4dev'
try:
import os
doc_dir = os.path.join(os.path.dirname(__file__), 'docs')
readme = open(os.path.join(doc_dir, 'README.rst'))
long_description = readme.read()
except IOError:
long_description = """\
galerts
=======
galerts is a Python client for managing `Google Alerts
<http://www.google.com/alerts>`_. Currently it resorts to scraping html from
Google's web interface since there is as of yet no public API. If they ever
decide to publish one, galerts will switch to using it.
Using galerts should be pretty straightforward. Check out the README and the
module itself for documentation.
Please find `galerts on github <https://github.com/Redorb/galerts>`_ if you would
like to collaborate.
"""
setup(
name='galerts',
version=version,
author='Josh Bronson',
author_email='[email protected]',
maintainer='Kenan Warren',
maintainer_email='[email protected]',
description="Python libary for managing Google Alerts",
long_description=long_description,
keywords='google, alerts, google alerts, news',
url='http://packages.python.org/galerts',
license='MIT',
py_modules=['galerts'],
zip_safe=True,
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content :: News/Diary",
"Topic :: Internet :: WWW/HTTP :: Indexing/Search",
],
install_requires=[
"lxml",
],
)