-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Expand readme, prep for public release.
Better (?, longer for sure) README Clean up and flesh out setup.py for distribution via PyPI
- Loading branch information
Showing
2 changed files
with
47 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,15 +10,19 @@ | |
author="Jacob Patterson", | ||
author_email="[email protected]", | ||
entry_points={ | ||
"console_scripts": ['subreddit-mirror = subredditmirror.__main__'] | ||
"console_scripts": ['subreddit-mirror = subredditmirror.mirror:main'] | ||
}, | ||
classifiers=['Programming Language :: Python :: 3.6', | ||
'Operating System :: OS Independent', | ||
'Natural Language :: English'], | ||
description="A script to copy posts from one subreddit to another.", | ||
install_requires=['progress==1.4', 'praw==5.4.0'], | ||
license="GNU GPLv3", | ||
keywords='reddit mirror crosspost bot script', | ||
license="GPLv3", | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
packages=['subredditmirror'], | ||
project_urls={ | ||
"Github": "https://github.com/jacobpa/subreddit-mirror", | ||
}, | ||
) |