bpo-32713: Fix tarfile.itn for large/negative float values. (GH-5434)
[python-delta-tar] / setup.py
... / ...
CommitLineData
1#!/usr/bin/env python3
2
3from distutils.core import setup
4
5setup(
6 name='python-delta-tar',
7 version='2.2',
8 description='deltatar python package',
9 author='Intra2net',
10 author_email='info@intra2net.com',
11 url='http://www.intra2net.com',
12 classifiers='Intra2net',
13 license='LGPL',
14 packages=['deltatar'],
15 scripts=['filesplit.py', 'rescue_tar.py', 'file_crypt.py']
16)