Skip to content

Commit

Permalink
Add setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
iceTwy committed Jan 2, 2015
1 parent 15194d2 commit b0ae2e6
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
from setuptools import setup

with open('README.rst') as file:
README = file.read()

setup(
name = 'py-feedr',
packages = ['feedr'],
scripts = ['bin/feedr'],
install_requires = ['requests'],
version = '0.1b1',
description = 'A Python Python parser to tweet the latest updates from multiple RSS feeds.',
long_description = README,
author = 'iceTwy',
author_email = 'icetwy@icetwy.re',
license = 'WTFPLv2',
url = 'https://github.com/iceTwy/py-feedr',
keywords = ['Twitter', 'tweet', 'RSS', 'feed'],
classifiers = [
'Programming Language :: Python :: 3',
'Topic :: Internet'
]
)

0 comments on commit b0ae2e6

Please sign in to comment.