-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
168930f
commit f405bea
Showing
6 changed files
with
39 additions
and
27 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
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
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
__version__ = 'v1.1.0' |
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 |
---|---|---|
@@ -1,12 +1,14 @@ | ||
from setuptools import setup | ||
from DownloaderForReddit.version import __version__ | ||
|
||
setup( | ||
name='DownloaderForReddit', | ||
version='1.0', | ||
version=__version__, | ||
packages=[''], | ||
url='', | ||
url='https://github.com/MalloyDelacroix/DownloaderForReddit', | ||
license='GNU GPLv3', | ||
author='Kyle Hickey', | ||
author_email='kyle.hickey222@gmail.com', | ||
description='A GUI application with some advanced features that downloads user posted content from reddit, either via a list of users or subreddits.' | ||
description='A GUI application with some advanced features that downloads user posted content from reddit, ' | ||
'either via a list of users or subreddits.' | ||
) |