From a55c537bd5ec49a335509b7b9772723f1f37a615 Mon Sep 17 00:00:00 2001 From: Eduardo Robles Elvira Date: Mon, 20 Jan 2014 10:07:16 +0100 Subject: [PATCH] adding setup files to create an rpm for python-delta-tar --- setup.py | 16 ++++++++++++++++ setup.sh | 3 +++ 2 files changed, 19 insertions(+), 0 deletions(-) create mode 100644 setup.py create mode 100755 setup.sh diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..265ee26 --- /dev/null +++ b/setup.py @@ -0,0 +1,16 @@ +#!/usr/bin/env python3 + +from distutils.core import setup + +setup( + name='python-delta-tar', + version='1.0', + description='deltatar python package', + author='Intra2net', + author_email='info@intra2net.com', + url='http://www.intra2net.com', + classifiers='Intranator', + license='LGPL', + packages=['deltatar'], + scripts=['filesplit.py', 'rescue_tar.py'] +) \ No newline at end of file diff --git a/setup.sh b/setup.sh new file mode 100755 index 0000000..60a2734 --- /dev/null +++ b/setup.sh @@ -0,0 +1,3 @@ +#!/bin/bash + +python3 setup.py bdist_rpm --release=1 --requires=python3 --group=Intranator -- 1.7.1