1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
|
#!/usr/bin/env python
import glob
import os
import sys
from setuptools import *
import aptdaemon
readme = open(os.path.join(os.path.dirname(__file__), "README")).read()
# The transaction class has got it's own gettext translation
# Don't set bug-contact in setup.cfg since p-d-u-e will overwrite
# XGETTEXT_ARGS otherwise.
os.environ["XGETTEXT_ARGS"] = "--keyword=self.trans.gettext"
if sys.argv[1] == "build_sphinx":
# The client allows to be used with the old gobject and the introspection
# based one. We have to make sure that the old one isn't imported
# by the client
from gi.repository import GObject
setup(name="aptdaemon",
version=aptdaemon.__version__,
description="DBus driven daemon for APT",
long_description=readme,
author="Sebastian Heinlein",
author_email="devel@glatzor.de",
packages=["aptdaemon"],
scripts=["aptd", "aptdcon", "aptd-import-from-keyserver"],
test_suite="nose.collector",
license="GNU LGPL",
keywords="apt package manager deb dbus d-bus debian ubuntu dpkg",
classifiers=["Development Status :: 5 - Production/Stable",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: GNU Library or Lesser General " \
"Public License (LGPL)",
"Programming Language :: Python :: 2.6",
"Topic :: System :: Systems Administration",
"Topic :: System :: Software Distribution"],
url="http://launchpad.net/sessioninstaller",
data_files=[("../etc/dbus-1/system.d/",
["data/org.debian.apt.conf",
"data/org.freedesktop.PackageKit-aptd.conf"]),
("../etc/apt/apt.conf.d/",
["data/20dbus"]),
("share/apport/package-hooks",
["apport/aptdaemon.py"]),
("share/aptdaemon",
glob.glob("data/lintian-*fatal.tags*")),
("share/dbus-1/system-services/",
["data/org.debian.apt.service",
"data/org.freedesktop.PackageKit.service"]),
("share/man/man1",
["doc/aptd.1", "doc/aptdcon.1"]),
("share/man/man7",
["doc/org.debian.apt.7",
"doc/org.debian.apt.transaction.7"]),
],
platforms="posix",
use_2to3=sys.version_info[0] >= 3,
)
|