sunlightlabs / python-capitolwords

python client library for interacting with Capitol Words API

This URL has Read+Write access

python-capitolwords / setup.py
100644 28 lines (24 sloc) 1.072 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 capitolwords import __version__,__license__,__doc__
 
license_text = open('LICENSE').read()
long_description = open('README.rst').read()
 
setup(name="python-capitolwords",
      version=__version__,
      py_modules=["capitolwords"],
      description="Libraries for interacting with the Capitol Words API",
      author="James Turk",
      author_email = "jturk@sunlightfoundation.com",
      license=license_text,
      url="http://github.com/sunlightlabs/python-capitolwords/",
      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"]
      )