From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1QWvvm-0006Qy-8i for garchives@archives.gentoo.org; Wed, 15 Jun 2011 19:39:14 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B0B231C11E; Wed, 15 Jun 2011 19:39:06 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 7C2591C11E for ; Wed, 15 Jun 2011 19:39:06 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E21271BC015 for ; Wed, 15 Jun 2011 19:39:05 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 1E6088003C for ; Wed, 15 Jun 2011 19:39:05 +0000 (UTC) From: "Vikraman Choudhury" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Vikraman Choudhury" Message-ID: Subject: [gentoo-commits] proj/gentoostats:master commit in: / X-VCS-Repository: proj/gentoostats X-VCS-Files: setup.py X-VCS-Directories: / X-VCS-Committer: vikraman X-VCS-Committer-Name: Vikraman Choudhury X-VCS-Revision: a085fabe187a2ad332f9e183e56e2bb155c0377d Date: Wed, 15 Jun 2011 19:39:05 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: bde92b1354811c35b0cf713fdcfe7a15 commit: a085fabe187a2ad332f9e183e56e2bb155c0377d Author: Vikraman Choudhury gmail com> AuthorDate: Wed Jun 15 19:38:38 2011 +0000 Commit: Vikraman Choudhury gmail com> CommitDate: Wed Jun 15 19:38:38 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/gentoostats.g= it;a=3Dcommit;h=3Da085fabe initial version of setup.py --- setup.py | 14 ++++++++++++++ 1 files changed, 14 insertions(+), 0 deletions(-) diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..421da82 --- /dev/null +++ b/setup.py @@ -0,0 +1,14 @@ + +import os +from setuptools import setup + +setup( + name =3D "Gentoostats", + version =3D "0.1", + author =3D "Vikraman Choudhury", + author_email =3D "vikraman.choudhury@gmail.com", + description =3D "Package statistics client", + license =3D "GPLv3", + url =3D "http://soc.dev.gentoo/org/gentoostats", + packages =3D ['client'], + )