public
Description: python client library for interacting with Project Vote Smart API
Homepage:
Clone URL: git://github.com/sunlightlabs/python-votesmart.git
python-votesmart / setup.py
100644 26 lines (22 sloc) 0.994 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
from distutils.core import setup
 
long_description = open('README.rst').read()
 
setup(name="python-votesmart",
      version="0.3.0",
      py_modules=["votesmart"],
      description="Libraries for interacting with the Project Vote Smart API",
      author="James Turk <jturk@sunlightfoundation.com>",
      author_email = "jturk@sunlightfoundation.com",
      license="BSD",
      url="http://github.com/sunlightlabs/python-votesmart/",
      long_description=long_description,
      platforms=["any"],
      classifiers=["Development Status :: 3 - Alpha",
                   "Intended Audience :: Developers",
                   "License :: OSI Approved :: BSD License",
                   "Natural Language :: English",
                   "Operating System :: OS Independent",
                   "Programming Language :: Python",
                   "Topic :: Software Development :: Libraries :: Python Modules",
                   ],
       install_requires=["simplejson >= 1.8"]
      )