Simplify setup.py

The default tarball format can be configured in setup.cfg.

Signed-off-by: Lubomír Sedlář <lsedlar@redhat.com>
This commit is contained in:
Lubomír Sedlář 2016-05-30 09:21:11 +02:00
commit 202ac42320
2 changed files with 2 additions and 4 deletions

View file

@ -0,0 +1,2 @@
[sdist]
formats = bztar

View file

@ -1,12 +1,8 @@
#!/usr/bin/env python
# -*- encoding: utf-8 -*-
import distutils.command.sdist
from setuptools import setup
# override default tarball format with bzip2
distutils.command.sdist.sdist.default_format = {"posix": "bztar"}
setup(
name='compose-utils',
version='0.1.5',