mirror of https://github.com/x89/Shreddit
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.1 KiB
37 lines
1.1 KiB
"""Setup script for shreddit.
|
|
"""
|
|
from setuptools import setup
|
|
from codecs import open
|
|
from os import path
|
|
|
|
VERSION = "6.0.7"
|
|
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()
|
|
|
|
setup(
|
|
name="shreddit",
|
|
version=VERSION,
|
|
description=DESCRIPTION,
|
|
long_description=long_description,
|
|
url="https://github.com/x89/Shreddit",
|
|
author="David John",
|
|
author_email="david@vaunt.eu",
|
|
classifiers=["Development Status :: 4 - Beta",
|
|
"Intended Audience :: End Users/Desktop",
|
|
"License :: OSI Approved :: BSD License",
|
|
"Programming Language :: Python"],
|
|
license="FreeBSD License",
|
|
packages=["shreddit"],
|
|
install_requires=["arrow", "backports-abc", "praw>=4", "PyYAML", "requests", "six", "tornado"],
|
|
package_data={"shreddit": ["*.example"]},
|
|
entry_points={
|
|
"console_scripts": [
|
|
"shreddit=shreddit.app:main"
|
|
]
|
|
}
|
|
)
|