Skip to content

Instantly share code, notes, and snippets.

@lukasschwab
Created February 2, 2015 20:29
Show Gist options
  • Save lukasschwab/6a506354562570f80afc to your computer and use it in GitHub Desktop.
Save lukasschwab/6a506354562570f80afc to your computer and use it in GitHub Desktop.
Modified setup.py for the Py-StackExchange python wrapper for the Stack Exchange API––solves issue `'Site' object has no attribute 'search_advanced'`
#!/usr/bin/env python
# Setuptools is required for the use_2to3 option below. You should install it
# from the Distribute home page, http://packages.python.org/distribute/
import sys
from setuptools import setup
options = {}
#if sys.version_info > (3, 0):
# Automatically run 2to3 when installing under Python 3
#options['use_2to3'] = True
setup(
name = 'py-stackexchange',
py_modules = ['stackexchange.core', 'stackexchange.sites', 'stackexchange.web', 'stackauth'],
version = '2.2.1',
description = 'A Python binding to the StackExchange (Stack Overflow, Server Fault, etc.) website APIs.',
author = 'Lucas Jones',
author_email = 'lucas@lucasjones.co.uk',
url = 'http://stackapps.com/questions/198/py-stackexchange-an-api-wrapper-for-python',
download_url = 'https://github.com/lucjon/Py-StackExchange/tarball/master',
keywords = ['stackexchange', 'se', 'stackoverflow'],
install_requires = ['six >= 1.8.0'],
classifiers = [
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Development Status :: 4 - Beta',
'Environment :: Other Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Internet',
],
long_description = '''**IMPORTANT**: Py-StackExchange now targets version 2.x of the StackExchange API, which introduces some small but breaking changes --- in particular, you will need to register for a new API key. Read the wiki page https://github.com/lucjon/Py-StackExchange/wiki/Updating-to-v2.x for more information.
Please see http://stackapps.com/questions/198/py-stackexchange-an-api-wrapper-for-python for a full description.''',
**options
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment