-
Notifications
You must be signed in to change notification settings - Fork 28
/
setup.py
36 lines (33 loc) · 1.1 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
#!/usr/bin/env python
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='google-alerts',
version='0.2.9',
description='Abstraction to manage Google Alerts from code',
url="https://github.com/9b/google-alerts",
author="Brandon Dixon",
author_email="brandon@9bplus.com",
license="MIT",
packages=find_packages(),
install_requires=['beautifulsoup4', 'requests'],
long_description=read('README.rst'),
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries'
],
entry_points={
'console_scripts': [
'google-alerts = google_alerts.cli.manage:main'
]
},
zip_safe=False,
keywords=['google', 'alerts', 'automation', 'administration'],
download_url='https://github.com/9b/google-alerts/archive/master.zip'
)