bpo-32713: Fix tarfile.itn for large/negative float values. (GH-5434)
[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',
b0284296 7 version='2.2',
a55c537b
ERE
8 description='deltatar python package',
9 author='Intra2net',
10 author_email='info@intra2net.com',
11 url='http://www.intra2net.com',
fc9b30ce 12 classifiers='Intra2net',
a55c537b
ERE
13 license='LGPL',
14 packages=['deltatar'],
cf0d92a2 15 scripts=['filesplit.py', 'rescue_tar.py', 'file_crypt.py']
b9f7f0b7 16)