-
Notifications
You must be signed in to change notification settings - Fork 19
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
cca4087
commit 2ac62be
Showing
3 changed files
with
37 additions
and
37 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 |
---|---|---|
@@ -1,33 +1,30 @@ | ||
#!/usr/bin/env python | ||
# coding: utf-8 | ||
|
||
import os | ||
import sys | ||
from cx_Freeze import setup, Executable | ||
|
||
options = { | ||
'build_exe': { | ||
'packages': [ | ||
'atexit', | ||
], | ||
'excludes': [ | ||
# 'tkinter', | ||
], | ||
}, | ||
'bdist_mac': { | ||
'bundle_name': 'BASC-Archiver', | ||
'iconfile': 'build-files/icon.icns', | ||
'custom_info_plist': 'build-files/Info.plist', | ||
}, | ||
'bdist_dmg': { | ||
'volume_label': 'BASC-Archiver', | ||
}, | ||
} | ||
|
||
setup( | ||
name='BASC-Archiver', | ||
version='0.8.2', | ||
description='Makes a complete archive of imageboard threads including images, HTML, and JSON.', | ||
options=options, | ||
executables=[Executable('thread-archiver')], | ||
) | ||
#!/usr/bin/env python | ||
# coding: utf-8 | ||
from cx_Freeze import setup, Executable | ||
|
||
options = { | ||
'build_exe': { | ||
'packages': [ | ||
'atexit', | ||
], | ||
'excludes': [ | ||
# 'tkinter', | ||
], | ||
}, | ||
'bdist_mac': { | ||
'bundle_name': 'BASC-Archiver', | ||
'iconfile': 'build-files/icon.icns', | ||
'custom_info_plist': 'build-files/Info.plist', | ||
}, | ||
'bdist_dmg': { | ||
'volume_label': 'BASC-Archiver', | ||
}, | ||
} | ||
|
||
setup( | ||
name='BASC-Archiver', | ||
version='0.9.0', | ||
description='Makes a complete archive of imageboard threads including images, HTML, and JSON.', | ||
options=options, | ||
executables=[Executable('thread-archiver')], | ||
) |
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,5 +1,6 @@ | ||
#!/usr/bin/env python | ||
# coding: utf-8 | ||
import codecs | ||
import os | ||
import sys | ||
|
||
|
@@ -12,13 +13,15 @@ | |
os.system('python setup.py sdist upload') | ||
sys.exit() | ||
|
||
with open('README.rst') as file: | ||
with codecs.open('README.rst') as file: | ||
long_description = file.read() | ||
if not isinstance(long_description, str): | ||
long_description = str(long_description, 'utf-8') | ||
|
||
|
||
setup( | ||
name='BASC-Archiver', | ||
version='0.8.7', | ||
version='0.9.0', | ||
description='Makes a complete archive of imageboard threads including images, HTML, and JSON.', | ||
long_description=long_description, | ||
author='Antonizoon Overtwater <[email protected]>, Daniel Oaks <[email protected]>', | ||
|
@@ -30,7 +33,7 @@ | |
'basc_archiver': 'basc_archiver', | ||
'basc_archiver.sites': 'basc_archiver/sites', | ||
}, | ||
install_requires=['requests', 'docopt==0.5.0', 'BASC-py4chan'], | ||
install_requires=['requests', 'docopt==0.5.0', 'BASC-py4chan>=0.5.5'], | ||
keywords='4chan downloader images json dump', | ||
classifiers=[ | ||
'Development Status :: 4 - Beta', | ||
|