diff options
| author | mjtnix <mjtnix@5914aa95-5b3a-0410-a3b5-7b719e7fe9b2> | 2009-03-19 19:58:49 +0000 |
|---|---|---|
| committer | mjtnix <mjtnix@5914aa95-5b3a-0410-a3b5-7b719e7fe9b2> | 2009-03-19 19:58:49 +0000 |
| commit | 6c08e620b42a2e00b155006d68b2b68e31888cd7 (patch) | |
| tree | 43482e2618cbfc9e891e90471cd549c1bf9c0644 /freebase-api/setup.py | |
| parent | aeff15ff87c93a96c085916150be8b9be57d5e5d (diff) | |
"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
Diffstat (limited to 'freebase-api/setup.py')
| -rw-r--r-- | freebase-api/setup.py | 9 |
1 files changed, 7 insertions, 2 deletions
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", ], |
