From 3e4307fc5cef5a0709959b445e62f96e0e38ec22 Mon Sep 17 00:00:00 2001 From: mjtnix Date: Tue, 16 Oct 2007 21:00:55 +0000 Subject: svn:ignore *.pyc add cheeseshop metadata. git-svn-id: http://freebase-python.googlecode.com/svn/trunk@16 5914aa95-5b3a-0410-a3b5-7b719e7fe9b2 --- setup.py | 35 ++++++++++++++++++++++++++++------- 1 file changed, 28 insertions(+), 7 deletions(-) diff --git a/setup.py b/setup.py index 220bb50..dc81e35 100644 --- a/setup.py +++ b/setup.py @@ -27,17 +27,38 @@ # POSSIBILITY OF SUCH DAMAGE. # ======================================================================== -#from distutils.core import setup -from setuptools import setup +try: + from setuptools import setup +except ImportError: + from distutils.core import setup setup( name='freebase', - version='0.1.0', - description='Python client library for Freebase API service', + version='0.2.0', + author='Nick Thompson', + author_email='nix@metaweb.com', maintainer_email='developers@freebase.com', license='BSD', - url='http://www.freebase.com/', - packages=['freebase'] + url='http://code.google.com/p/freebase-python/', + description='Python client library for the freebase.com service', + long_description="""A Python library providing a convenient + wrapper around the freebase.com service api, as well as some + utility functions helpful in writing clients of the api.""", + packages=['freebase'], + #download_url='xxx', # provided by cheeseshop? + classifiers=[ + 'Development Status :: 3 - Alpha', + 'Environment :: Console', + 'Environment :: Web Environment', + 'Intended Audience :: Developers', + 'License :: OSI Approved :: BSD License', + 'Operating System :: OS Independent', + 'Programming Language :: Python', + 'Topic :: Database :: Front-Ends', + 'Topic :: Internet :: WWW/HTTP', + 'Topic :: Internet :: WWW/HTTP :: Dynamic Content', + 'Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries', + 'Topic :: Software Development :: Libraries :: Python Modules', + ], ) - -- cgit v1.3.1