Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (Client CN "mail.NetBSD.org", Issuer "mail.NetBSD.org CA" (not verified)) by mollari.NetBSD.org (Postfix) with ESMTPS id D05DB1A9239 for ; Mon, 10 Jan 2022 19:28:28 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id D8D7784E75; Mon, 10 Jan 2022 19:28:27 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 1FCD984E73 for ; Mon, 10 Jan 2022 19:28:27 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id YSo74G4lDQ1F for ; Mon, 10 Jan 2022 19:28:26 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 9BF2884E6D for ; Mon, 10 Jan 2022 19:28:26 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 95E1FFB24; Mon, 10 Jan 2022 19:28:26 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_164184290617760" MIME-Version: 1.0 Date: Mon, 10 Jan 2022 19:28:26 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/devel/py-flit_core/files To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20220110192826.95E1FFB24@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_164184290617760 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Mon Jan 10 19:28:26 UTC 2022 Added Files: pkgsrc/devel/py-flit_core/files: setup.py Log Message: py-flit_core: add setup.py To generate a diff of this commit: cvs rdiff -u -r0 -r1.1 pkgsrc/devel/py-flit_core/files/setup.py Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_164184290617760 Content-Disposition: inline Content-Length: 1852 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Added files: Index: pkgsrc/devel/py-flit_core/files/setup.py diff -u /dev/null pkgsrc/devel/py-flit_core/files/setup.py:1.1 --- /dev/null Mon Jan 10 19:28:26 2022 +++ pkgsrc/devel/py-flit_core/files/setup.py Mon Jan 10 19:28:26 2022 @@ -0,0 +1,44 @@ +#!/usr/bin/env python +# setup.py generated by flit for tools that don't yet use PEP 517 + +from distutils.core import setup + +packages = \ +['flit_core', + 'flit_core.tests', + 'flit_core.tests.samples.ns1-pkg.ns1.pkg', + 'flit_core.tests.samples.package1', + 'flit_core.tests.samples.package1.subpkg', + 'flit_core.tests.samples.package1.subpkg2', + 'flit_core.vendor', + 'flit_core.vendor.tomli'] + +package_data = \ +{'': ['*'], + 'flit_core.tests': ['samples/*', + 'samples/conflicting_modules/*', + 'samples/conflicting_modules/src/*', + 'samples/constructed_version/*', + 'samples/inclusion/*', + 'samples/inclusion/LICENSES/*', + 'samples/inclusion/doc/*', + 'samples/inclusion/doc/subdir/*', + 'samples/ns1-pkg/*', + 'samples/ns1-pkg/ns1/*', + 'samples/pep517/*', + 'samples/pep621/*', + 'samples/pep621_nodynamic/*'], + 'flit_core.tests.samples.package1': ['data_dir/*'], + 'flit_core.tests.samples.package1.subpkg': ['sp_data_dir/*'], + 'flit_core.vendor': ['tomli-1.2.3.dist-info/*']} + +setup(name='flit_core', + version='3.6.0', + description='Distribution-building parts of Flit. See flit package for more information', + author=None, + author_email='Thomas Kluyver & contributors ', + url=None, + packages=packages, + package_data=package_data, + python_requires='>=3.6', + ) --_----------=_164184290617760--