mirror of
https://git.freebsd.org/ports.git
synced 2025-07-08 12:59:17 -04:00
writing data on the web. Each of the following Google services provides a Google data API: * Base * Blogger * Calendar * Picasa Web Albums * Spreadsheets * Google Apps Provisioning * Code Search * Notebook The GData Python Client Library provides a library and source code that make it easy to access data through Google Data APIs. WWW: http://code.google.com/p/gdata-python-client/ PR: ports/110958 Submitted by: Li-Wen Hsu <lwhsu at lwhsu.org>
19 lines
297 B
Python
19 lines
297 B
Python
from distutils.core import setup
|
|
|
|
setup(
|
|
name = 'gdata',
|
|
version = "%%PORTVERSION%%",
|
|
py_modules = [
|
|
'app_service',
|
|
'atom',
|
|
'gbase',
|
|
'gbase_service',
|
|
'gcalendar',
|
|
'gcalendar_service',
|
|
'gdata',
|
|
'gdata_client',
|
|
'gdata_service',
|
|
'gspreadsheet',
|
|
'gspreadsheet_service',
|
|
],
|
|
)
|