* Simplified OAuth2 flow * Fix Worksheet.delete_rows() index error * Deprecate Worksheet.delete_row() * Scope Worksheet.find() to a specific row or a column * Add Worksheet.add_protected_range() * Add ability to fetch cell address in A1 notation * Add Worksheet.delete_columns() * Ignore numericising specific columns in get_all_records * Add option folder_id when creating a spreadsheet * Add insertDataOption to Worksheet.append_row() and Worksheet.append_rows()
24 lines
498 B
Makefile
24 lines
498 B
Makefile
# Created by: Steven Kreuzer <skreuzer@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= gspread
|
|
PORTVERSION= 3.5.0
|
|
DISTVERSIONPREFIX= v
|
|
CATEGORIES= net python
|
|
MASTER_SITES= CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= skreuzer@FreeBSD.org
|
|
COMMENT= Google Spreadsheets Python API
|
|
|
|
LICENSE= MIT
|
|
|
|
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}requests>2.2.1:www/py-requests@${PY_FLAVOR}
|
|
|
|
USES= python
|
|
USE_PYTHON= distutils autoplist
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= burnash
|
|
|
|
.include <bsd.port.mk>
|