Skip to content

Commit

Permalink
Release v0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielOaks committed Oct 4, 2015
1 parent cca4087 commit 2ac62be
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 37 deletions.
2 changes: 1 addition & 1 deletion basc_archiver/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

from .sites import default_archivers

version = '0.8.7 (threaded)'
version = '0.9.0'
_default_base_dir = './archive'


Expand Down
63 changes: 30 additions & 33 deletions build_cli.py
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')],
)
9 changes: 6 additions & 3 deletions setup.py
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

Expand All @@ -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]>',
Expand All @@ -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',
Expand Down

0 comments on commit 2ac62be

Please sign in to comment.