1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-19 19:59:43 +00:00

devel/py-setuptools_scm: Setuptools plugin to manage your versions by scm tags

Handles managing your python package versions in scm metadata instead of
declaring them as the version argument or in a scm managed file.

WWW: https://github.com/pypa/setuptools_scm/
This commit is contained in:
William Grzybowski 2015-11-12 12:48:51 +00:00
parent cf4f908600
commit a07e1c6ce8
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=401339
4 changed files with 24 additions and 0 deletions

View File

@ -4286,6 +4286,7 @@
SUBDIR += py-setuptools35
SUBDIR += py-setuptools_darcs
SUBDIR += py-setuptools_hg
SUBDIR += py-setuptools_scm
SUBDIR += py-sh
SUBDIR += py-shapely
SUBDIR += py-simplegeneric

View File

@ -0,0 +1,17 @@
# $FreeBSD$
PORTNAME= setuptools_scm
PORTVERSION= 1.8.0
CATEGORIES= devel python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= wg@FreeBSD.org
COMMENT= Setuptools plugin to manage your versions by scm tags
LICENSE= MIT
USES= python tar:bz2
USE_PYTHON= distutils autoplist
.include <bsd.port.mk>

View File

@ -0,0 +1,2 @@
SHA256 (setuptools_scm-1.8.0.tar.bz2) = ddbf365e60e5f8e3f86fe117edeee4a7e1dd8ce7a9337951c9c163e7c506e602
SIZE (setuptools_scm-1.8.0.tar.bz2) = 14491

View File

@ -0,0 +1,4 @@
Handles managing your python package versions in scm metadata instead of
declaring them as the version argument or in a scm managed file.
WWW: https://github.com/pypa/setuptools_scm/