-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·24 lines (22 loc) · 805 Bytes
/
setup.py
File metadata and controls
executable file
·24 lines (22 loc) · 805 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/usr/bin/env python
from setuptools import setup
setup(
name = 'rss2twitter',
version = '0.0.3',
package_dir = {'': 'src'},
data_files = [('etc/rss2twitter', ['src/config-sample.ini'])],
scripts = ['src/rss2twitter.py'],
install_requires = ['feedparser', 'tweepy>=1.8'],
long_description=open('README.txt').read(),
author = 'Todd Eddy',
author_email = 'vr@removethispart.vrillusions.com',
description = 'Checks rss feed for new posts and adds them to twitter.',
url = 'https://github.com/vrillusions/rss2twitter',
classifiers = [
"Programming Language :: Python",
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Internet",
],
)