mirror of
https://git.freebsd.org/ports.git
synced 2025-06-17 10:40:46 -04:00
Py-StackExchange is a simple Python binding for the StackExchange API. Py-StackExchange API coverage: - Access any StackExchange site, with just its URL. Even those that aren't online yet. - If you just can't decide which one to use, you can use StackAuth to look up the full list of sites. - Once you're online, you can view everything about users, questions, answers, badges, comments and tags. - You can even go back in time by playing with post revisions. - Help users by looking up every StackExchange account they have. Every single one. - See how well an SE site is doing; check its site statistics. - Search the questions of StackExchange sites. WWW: https://github.com/lucjon/Py-StackExchange
24 lines
525 B
Makefile
24 lines
525 B
Makefile
# Created by: Carlos J. Puga Medina <cpm@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= stackexchange
|
|
PORTVERSION= 2.2.6
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
DISTNAME= py-${PORTNAME}-${PORTVERSION}
|
|
|
|
MAINTAINER= cpm@FreeBSD.org
|
|
COMMENT= Python binding to the StackExchange website APIs
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>=1.8.0:devel/py-six
|
|
|
|
USES= python
|
|
USE_PYTHON= autoplist distutils
|
|
|
|
NO_ARCH= yes
|
|
|
|
.include <bsd.port.mk>
|