From 6c08e620b42a2e00b155006d68b2b68e31888cd7 Mon Sep 17 00:00:00 2001 From: mjtnix Date: Thu, 19 Mar 2009 19:58:49 +0000 Subject: "fcl" is a command-line tool for working with freebase.com git-svn-id: http://freebase-python.googlecode.com/svn/trunk@53 5914aa95-5b3a-0410-a3b5-7b719e7fe9b2 --- freebase-api/setup.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'freebase-api/setup.py') diff --git a/freebase-api/setup.py b/freebase-api/setup.py index a584848..3459227 100644 --- a/freebase-api/setup.py +++ b/freebase-api/setup.py @@ -34,7 +34,7 @@ except ImportError: setup( name='freebase', - version='0.2.4', + version='0.2.5', author='Nick Thompson', author_email='nix@metaweb.com', maintainer_email='developers@freebase.com', @@ -44,7 +44,12 @@ setup( 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', 'freebase.api'], + packages=['freebase', 'freebase.api', 'freebase.fcl'], + entry_points = { + 'console_scripts': [ + 'fcl = freebase.fcl.fcl:main' + ] + }, requires=[ "simplejson", ], -- cgit v1.3.1