adding setup files to create an rpm for python-delta-tar
[python-delta-tar] / setup.py
CommitLineData
a55c537b
ERE
1#!/usr/bin/env python3
2
3from distutils.core import setup
4
5setup(
6 name='python-delta-tar',
7 version='1.0',
8 description='deltatar python package',
9 author='Intra2net',
10 author_email='info@intra2net.com',
11 url='http://www.intra2net.com',
12 classifiers='Intranator',
13 license='LGPL',
14 packages=['deltatar'],
15 scripts=['filesplit.py', 'rescue_tar.py']
16)