public
Description: python client library for interacting with Sunlight Labs API
Homepage:
Clone URL: git://github.com/sunlightlabs/python-sunlightapi.git
python-sunlightapi / setup.py
100644 28 lines (24 sloc) 1.068 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
27
28
from distutils.core import setup
from sunlightapi import __version__,__license__,__doc__
 
license_text = open('LICENSE').read()
long_description = open('README.rst').read()
 
setup(name="python-sunlightapi",
      version=__version__,
      py_modules=["sunlightapi"],
      description="Libraries for interacting with the Sunlight Labs API",
      author="James Turk",
      author_email = "jturk@sunlightfoundation.com",
      license=license_text,
      url="http://github.com/sunlightlabs/python-sunlightapi/",
      long_description=long_description,
      platforms=["any"],
      classifiers=["Development Status :: 4 - Beta",
                   "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"]
      )