-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
57 lines (48 loc) · 1.46 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
50
51
52
53
54
55
56
#!/usr/bin/env python
from setuptools import setup, find_packages
__author__ = 'Derek Springer'
__version__= '0.1.0'
LONG_DESCRIPTION = '''
RSSTweeter
==================
This is a simple tool to read an RSS feed and post any new entries to a
twitter feed.
Dependencies
------------
* [feedparser](http://www.feedparser.org/)
* [python-twitter](http://code.google.com/p/python-twitter/)
* [simplejson](http://pypi.python.org/pypi/simplejson/)
* [oauth2](http://pypi.python.org/pypi/oauth2)
* [httplib2](http://code.google.com/p/httplib2/)
Installing twitter-rss
-----------------------------
1. download the source and run
'python setup.py install'
'''
setup(
name='RSSTweeter',
author=__author__ ,
author_email='derekspringer@gmail.com',
url='http://github.com/dbspringer/RSSTweeter',
version=__version__,
description='A simple tool to read an RSS feed and post any new entries to a twitter feed.',
long_description=LONG_DESCRIPTION,
classifiers=[
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Communications :: Chat',
'Topic :: Internet',
'Environment :: Web Environment',
],
keywords='twitter,rss',
license='BSD',
packages=find_packages(),
install_requires=[
'setuptools',
'feedparser',
'python-twitter',
'simplejson',
'oauth2',
'httplib2'],
include_package_data=True,
)