Skip to content

Commit ae87596

Browse files
committed
ready for 0.2.0 release
1 parent ba9fd58 commit ae87596

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ Import ``votesmart`` from ``votesmart``:
5050

5151
And set your API key:
5252

53-
>>> votesmart.apikey = '496ec1875a7885ec65a4ead99579642c'
53+
>>> votesmart.apikey = '<<SET API KEY HERE>>'
5454

5555
---------------
5656
address methods

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
from distutils.core import setup
22
from votesmart import __version__,__license__,__doc__
33

4+
long_description = open('README.rst').read()
5+
46
setup(name="python-votesmart",
57
version=__version__,
68
py_modules=["votesmart"],
@@ -9,7 +11,7 @@
911
author_email = "[email protected]",
1012
license=__license__,
1113
url="http://github.com/sunlightlabs/python-votesmart/",
12-
long_description=__doc__,
14+
long_description=long_description,
1315
platforms=["any"],
1416
classifiers=["Development Status :: 3 - Alpha",
1517
"Intended Audience :: Developers",

votesmart.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ def _result_to_obj(cls, result):
187187

188188
class votesmart(object):
189189

190-
apikey = '496ec1875a7885ec65a4ead99579642c'
190+
apikey = None
191191

192192
@staticmethod
193193
def _apicall(func, params):

0 commit comments

Comments
 (0)