paltman / pycalais

A Python wrapper to the Reuters Calais API

This URL has Read+Write access

pycalais / setup.py
d21d9727 » paltman 2008-02-11 added initial structure and... 1 #!/usr/bin/python
2
3 # Copyright (c) 2008 Patrick Altman http://paltman.com/
4 #
5 # Permission is hereby granted, free of charge, to any person obtaining a
6 # copy of this software and associated documentation files (the
7 # "Software"), to deal in the Software without restriction, including
8 # without limitation the rights to use, copy, modify, merge, publish, dis-
9 # tribute, sublicense, and/or sell copies of the Software, and to permit
10 # persons to whom the Software is furnished to do so, subject to the fol-
11 # lowing conditions:
12 #
13 # The above copyright notice and this permission notice shall be included
14 # in all copies or substantial portions of the Software.
15 #
16 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
17 # OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABIL-
18 # ITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
19 # SHALL THE AUTHOR BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
20 # WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
22 # IN THE SOFTWARE.
23
24 try:
25 from setuptools import setup
26 except ImportError:
27 from distutils.core import setup
28
29 from pycalais import Version
30
31 setup(name = "pycalais",
32 version = Version,
33 description = "Open Calais Web Service Library",
34 long_description="Python wrapper to the Open Calais Web Service.",
35 author = "Patrick Altman",
36 author_email = "paltman@gmail.com",
37 url = "http://code.google.com/p/pycalais/",
38 packages = [ 'pycalais', 'pycalais.tests'],
39 license = 'MIT',
40 platforms = 'Posix; MacOS X; Windows',
41 classifiers = [ 'Development Status :: 1 - Alpha',
42 'Intended Audience :: Developers',
43 'License :: OSI Approved :: MIT License',
44 'Operating System :: OS Independent',
45 'Topic :: Internet',
46 ],
87a2c85f » paltman 2008-03-15 migrating back to svn/googl... 47 )