"""Setup script for shreddit. """ from setuptools import setup from codecs import open from os import path VERSION = "2.0.0" DESCRIPTION = " Remove your comment history on Reddit as deleting an account does not do so." here = path.abspath(path.dirname(__file__)) with open(path.join(here, "README.md"), encoding='utf-8') as filein: long_description = filein.read() with open(path.join(here, "requirements.txt"), encoding="utf-8") as filein: requirements = [line.strip() for line in filein.readlines()] setup( name="shreddit", version=VERSION, description=DESCRIPTION, long_description=long_description, url="https://github.com/scott-hand/Shreddit", author="Scott Hand", author_email="scott@vkgfx.com", classifiers=["Development Status :: 4 - Beta", "Intended Audience :: End Users/Desktop", "Programming Language :: Python"], packages=["shreddit"], install_requires=["arrow", "backports-abc", "decorator", "praw", "PyYAML", "requests", "six", "tornado", "update-checker", "wheel"], entry_points={ "console_scripts": [ "shreddit=shreddit.app:main" ] } )