2015-11-25 15:14:35 +00:00
|
|
|
#!/usr/bin/env python
|
2015-02-05 15:56:24 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
|
|
|
|
import os
|
2006-11-08 21:34:59 +00:00
|
|
|
import glob
|
|
|
|
|
2015-02-05 15:56:24 +00:00
|
|
|
import distutils.command.sdist
|
|
|
|
from setuptools import setup
|
|
|
|
|
|
|
|
|
|
|
|
# override default tarball format with bzip2
|
|
|
|
distutils.command.sdist.sdist.default_format = {"posix": "bztar"}
|
|
|
|
|
|
|
|
|
|
|
|
# recursively scan for python modules to be included
|
|
|
|
package_root_dirs = ["pungi"]
|
|
|
|
packages = set()
|
|
|
|
for package_root_dir in package_root_dirs:
|
|
|
|
for root, dirs, files in os.walk(package_root_dir):
|
|
|
|
if "__init__.py" in files:
|
|
|
|
packages.add(root.replace("/", "."))
|
|
|
|
packages = sorted(packages)
|
|
|
|
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name = "pungi",
|
2016-04-01 14:42:24 +00:00
|
|
|
version = "4.1.1", # make sure it matches with pungi.__version__
|
2015-02-05 15:56:24 +00:00
|
|
|
description = "Distribution compose tool",
|
2016-01-11 15:34:45 +00:00
|
|
|
url = "https://pagure.io/pungi",
|
2015-02-05 15:56:24 +00:00
|
|
|
author = "Dennis Gilmore",
|
|
|
|
author_email = "dgilmore@fedoraproject.org",
|
|
|
|
license = "GPLv2",
|
|
|
|
|
|
|
|
packages = packages,
|
|
|
|
scripts = [
|
2015-03-12 16:03:48 +00:00
|
|
|
'bin/pungi',
|
2016-04-01 14:12:35 +00:00
|
|
|
'bin/pungi-config-validate',
|
2015-03-12 18:15:29 +00:00
|
|
|
'bin/pungi-koji',
|
2015-06-05 18:40:58 +00:00
|
|
|
'bin/comps_filter',
|
2015-12-02 14:50:32 +00:00
|
|
|
'bin/pungi-fedmsg-notification',
|
2016-04-01 14:12:35 +00:00
|
|
|
'bin/pungi-make-ostree',
|
2015-02-05 15:56:24 +00:00
|
|
|
],
|
|
|
|
data_files = [
|
2012-11-26 07:32:01 +00:00
|
|
|
('/usr/share/pungi', glob.glob('share/*.xsl')),
|
|
|
|
('/usr/share/pungi', glob.glob('share/*.ks')),
|
2015-03-14 20:03:32 +00:00
|
|
|
('/usr/share/pungi', glob.glob('share/*.dtd')),
|
2012-11-26 07:32:01 +00:00
|
|
|
('/usr/share/pungi/multilib', glob.glob('share/multilib/*')),
|
2015-06-25 12:02:52 +00:00
|
|
|
],
|
|
|
|
test_suite = "tests",
|
2012-11-26 07:32:01 +00:00
|
|
|
)
|