From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id AB07E138A6C for ; Sat, 18 Apr 2015 20:27:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 679C8E08F7; Sat, 18 Apr 2015 20:27:33 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1575BE08F7 for ; Sat, 18 Apr 2015 20:27:33 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 586B0340CF3 for ; Sat, 18 Apr 2015 20:27:30 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F05491636B for ; Sat, 18 Apr 2015 20:27:26 +0000 (UTC) From: "Magnus Granberg" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Magnus Granberg" Message-ID: <1429384503.dc90a2950499d828e53885cfb09bc56838645fa7.zorry@gentoo> Subject: [gentoo-commits] proj/tinderbox-cluster:master commit in: / X-VCS-Repository: proj/tinderbox-cluster X-VCS-Files: .gitignore setup.py X-VCS-Directories: / X-VCS-Committer: zorry X-VCS-Committer-Name: Magnus Granberg X-VCS-Revision: dc90a2950499d828e53885cfb09bc56838645fa7 X-VCS-Branch: master Date: Sat, 18 Apr 2015 20:27:26 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 1517c129-2fd1-4dde-931e-b93e5fde5902 X-Archives-Hash: 1549563f50037b6a47746a0c785dd5ce commit: dc90a2950499d828e53885cfb09bc56838645fa7 Author: Magnus Granberg gentoo org> AuthorDate: Sat Apr 18 19:15:03 2015 +0000 Commit: Magnus Granberg gentoo org> CommitDate: Sat Apr 18 19:15:03 2015 +0000 URL: https://gitweb.gentoo.org/proj/tinderbox-cluster.git/commit/?id=dc90a295 add gitignore and setup .gitignore | 8 ++++++++ setup.py | 28 ++++++++++++++++++++++++++++ 2 files changed, 36 insertions(+) diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1658d1c --- /dev/null +++ b/.gitignore @@ -0,0 +1,8 @@ +# Backup files +*~ +# log dir +frontend/static/logs +# Python compiled files +*.pyc +frontend/python/tinderbox/settings.py +frontend/python/tinderbox/wsgi.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..bf78af8 --- /dev/null +++ b/setup.py @@ -0,0 +1,28 @@ +import os + +try: + from setuptools import setup +except ImportError: + raise + from ez_setup import use_setuptools + use_setuptools() + from setuptools import setup + +version = os.path.split(os.path.abspath(__file__))[-2].split('-')[-1] + +packages = ['btc'] + +package_dir = {'btc': 'btc/pym'} + +setup( + name="btc", + version=version, + author='Zorry', + author_email='tinderbox-cluster@gentoo.org', + url='https://anongit.gentoo.org/git/proj/tinderbox-cluster.git', + description='Tinderbox cluster', + platforms=["any"], + license="GPL2", + packages=packages, + package_dir=package_dir, +) \ No newline at end of file